Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move copyright for const constructor issue
  • Loading branch information
stuartmorgan-g committed Mar 27, 2023
commit 1e7e7f4da6a21d5936e5650b1c55764d91926969
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Copyright 2013 The Flutter Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,13 @@ import 'package:pigeon/pigeon.dart';
PigeonOptions(
dartOut: 'lib/src/common/web_kit.g.dart',
dartTestOut: 'test/src/common/test_web_kit.g.dart',
dartOptions: DartOptions(copyrightHeader: <String>[
'Copyright 2013 The Flutter Authors. All rights reserved.',
'Use of this source code is governed by a BSD-style license that can be',
'found in the LICENSE file.',
]),
objcHeaderOut: 'ios/Classes/FWFGeneratedWebKitApis.h',
objcSourceOut: 'ios/Classes/FWFGeneratedWebKitApis.m',
objcOptions: ObjcOptions(
header: 'ios/Classes/FWFGeneratedWebKitApis.h',
headerIncludePath: 'ios/Classes/FWFGeneratedWebKitApis.h',
prefix: 'FWF',
copyrightHeader: <String>[
'Copyright 2013 The Flutter Authors. All rights reserved.',
'Use of this source code is governed by a BSD-style license that can be',
'found in the LICENSE file.',
],
),
copyrightHeader: 'pigeons/copyright.txt',
),
)

Expand Down