File tree 8 files changed +8
-8
lines changed
device_info/device_info_platform_interface/lib/model
google_maps_flutter/google_maps_flutter_web/lib/src
image_picker/image_picker/example/ios 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class AndroidDeviceInfo {
29
29
required this .isPhysicalDevice,
30
30
required this .androidId,
31
31
required List <String > systemFeatures,
32
- }) : supported32BitAbis = List <String >.unmodifiable (supported32BitAbis),
32
+ }) : supported32BitAbis = List <String >.unmodifiable (supported32BitAbis),
33
33
supported64BitAbis = List <String >.unmodifiable (supported64BitAbis),
34
34
supportedAbis = List <String >.unmodifiable (supportedAbis),
35
35
systemFeatures = List <String >.unmodifiable (systemFeatures);
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class CirclesController extends GeometryController {
15
15
/// Initialize the cache. The [StreamController] comes from the [GoogleMapController] , and is shared with other controllers.
16
16
CirclesController ({
17
17
required StreamController <MapEvent > stream,
18
- }) : _streamController = stream,
18
+ }) : _streamController = stream,
19
19
_circleIdToController = Map <CircleId , CircleController >();
20
20
21
21
/// Returns the cache of [CircleController] s. Test only.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class MarkersController extends GeometryController {
15
15
/// Initialize the cache. The [StreamController] comes from the [GoogleMapController] , and is shared with other controllers.
16
16
MarkersController ({
17
17
required StreamController <MapEvent > stream,
18
- }) : _streamController = stream,
18
+ }) : _streamController = stream,
19
19
_markerIdToController = Map <MarkerId , MarkerController >();
20
20
21
21
/// Returns the cache of [MarkerController] s. Test only.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class PolygonsController extends GeometryController {
15
15
/// Initializes the cache. The [StreamController] comes from the [GoogleMapController] , and is shared with other controllers.
16
16
PolygonsController ({
17
17
required StreamController <MapEvent > stream,
18
- }) : _streamController = stream,
18
+ }) : _streamController = stream,
19
19
_polygonIdToController = Map <PolygonId , PolygonController >();
20
20
21
21
/// Returns the cache of [PolygonController] s. Test only.
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class PolylinesController extends GeometryController {
15
15
/// Initializes the cache. The [StreamController] comes from the [GoogleMapController] , and is shared with other controllers.
16
16
PolylinesController ({
17
17
required StreamController <MapEvent > stream,
18
- }) : _streamController = stream,
18
+ }) : _streamController = stream,
19
19
_polylineIdToController = Map <PolylineId , PolylineController >();
20
20
21
21
/// Returns the cache of [PolylineContrller] s. Test only.
Original file line number Diff line number Diff line change 10
10
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
11
11
5C9513011EC38BD300040975 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C9513001EC38BD300040975 /* GeneratedPluginRegistrant.m */; };
12
12
680049262280D736006DD6AB /* MetaDataUtilTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 680049252280D736006DD6AB /* MetaDataUtilTests.m */; };
13
- 680049272280D79A006DD6AB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
14
13
680049382280F2B9006DD6AB /* pngImage.png in Resources */ = {isa = PBXBuildFile; fileRef = 680049352280F2B8006DD6AB /* pngImage.png */; };
15
14
680049392280F2B9006DD6AB /* jpgImage.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 680049362280F2B8006DD6AB /* jpgImage.jpg */; };
16
15
6801C8392555D726009DAF8D /* ImagePickerFromGalleryUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6801C8382555D726009DAF8D /* ImagePickerFromGalleryUITests.m */; };
90
89
isa = PBXFrameworksBuildPhase;
91
90
buildActionMask = 2147483647;
92
91
files = (
93
- F10E2DB84567A50A8721C9C7 /* libPods-RunnerUITests.a in Frameworks */,
94
92
);
95
93
runOnlyForDeploymentPostprocessing = 0;
96
94
};
Original file line number Diff line number Diff line change 2
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
3
<plist version =" 1.0" >
4
4
<dict >
5
+ <key >PHPhotoLibraryPreventAutomaticLimitedAccessAlert </key >
6
+ <true />
5
7
<key >CFBundleDevelopmentRegion </key >
6
8
<string >en </string >
7
9
<key >CFBundleExecutable </key >
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ class JavascriptChannel {
180
180
JavascriptChannel ({
181
181
required this .name,
182
182
required this .onMessageReceived,
183
- }) : assert (name != null ),
183
+ }) : assert (name != null ),
184
184
assert (onMessageReceived != null ),
185
185
assert (_validChannelNames.hasMatch (name));
186
186
You can’t perform that action at this time.
0 commit comments