Let injectPlugins integrate custom pods (#26970)
diff --git a/packages/flutter_tools/lib/src/project.dart b/packages/flutter_tools/lib/src/project.dart index 4c5496b..9e4bdac 100644 --- a/packages/flutter_tools/lib/src/project.dart +++ b/packages/flutter_tools/lib/src/project.dart
@@ -89,7 +89,7 @@ } /// The iOS sub project of this project. - IosProject get ios => IosProject._(this); + IosProject get ios => IosProject.fromFlutter(this); /// The Android sub project of this project. AndroidProject get android => AndroidProject._(this); @@ -151,7 +151,7 @@ /// Instances will reflect the contents of the `ios/` sub-folder of /// Flutter applications and the `.ios/` sub-folder of Flutter module projects. class IosProject { - IosProject._(this.parent); + IosProject.fromFlutter(this.parent); /// The parent of this project. final FlutterProject parent;