constructBuildCommand method

  1. @override
String constructBuildCommand(
  1. List<String> dartDefines
)
override

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';
}