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 argCodesign = argResults.getFlagCodesign();
return '$baseCommand $argCodesign';
}