copyWith method
Implementation
FlutterBuild copyWith({
String? appName,
String? appVersion,
Version? buildVersion,
List<String>? buildArgs,
String? mainPath,
String? flavor,
String? releaseFolder,
bool? installDeps,
String? flutterSdkPath,
}) {
return FlutterBuild._(
appName: appName ?? this.appName,
appVersion: appVersion ?? this.appVersion,
buildVersion: buildVersion ?? this.buildVersion,
buildArgs: buildArgs ?? this.buildArgs,
mainPath: mainPath ?? this.mainPath,
flavor: flavor ?? this.flavor,
releaseFolder: releaseFolder ?? this.releaseFolder,
installDeps: installDeps ?? this.installDeps,
flutterSdkPath: flutterSdkPath ?? this.flutterSdkPath,
);
}