constructBuildCommand method
Constructs the build command string.
Subclasses should override this method to add platform-specific arguments.
Implementation
@override
String constructBuildCommand(List<String> dartDefines) {
final baseCommand = super.constructBuildCommand(dartDefines);
final argExportMethod = argResults.getOptionExportMethod();
final argExportOptionsPlist = argResults.getOptionExportOptionsPlist();
return '$baseCommand $argExportMethod $argExportOptionsPlist';
}