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 argExportMethod = argResults.getOptionExportMethod();
  final argExportOptionsPlist = argResults.getOptionExportOptionsPlist();
  return '$baseCommand $argExportMethod $argExportOptionsPlist';
}