diff --git a/packages/flutter_tools/lib/src/darwin/darwin.dart b/packages/flutter_tools/lib/src/darwin/darwin.dart index 028c5b8ab63..43e5a60cc0a 100644 --- a/packages/flutter_tools/lib/src/darwin/darwin.dart +++ b/packages/flutter_tools/lib/src/darwin/darwin.dart @@ -14,7 +14,6 @@ import '../project.dart'; /// This includes details like binary names, artifact locations, and deployment versions. enum FlutterDarwinPlatform { ios( - name: 'ios', binaryName: 'Flutter', targetPlatform: TargetPlatform.ios, swiftPackagePlatform: SwiftPackagePlatform.ios, @@ -24,7 +23,6 @@ enum FlutterDarwinPlatform { sdks: [XcodeSdk.IPhoneOS, XcodeSdk.IPhoneSimulator], ), macos( - name: 'macos', binaryName: 'FlutterMacOS', targetPlatform: TargetPlatform.darwin, swiftPackagePlatform: SwiftPackagePlatform.macos, @@ -35,7 +33,6 @@ enum FlutterDarwinPlatform { ); const FlutterDarwinPlatform({ - required this.name, required this.binaryName, required this.targetPlatform, required this.swiftPackagePlatform, @@ -45,9 +42,6 @@ enum FlutterDarwinPlatform { required this.sdks, }) : _artifactName = artifactName; - /// The name of the platform in all lowercase. Matches the corresponding [TargetPlatform]. - final String name; - /// The name of the binary file within the [xcframeworkArtifact]. final String binaryName;