ReleasePackerCommandWithArgs constructor
Implementation
ReleasePackerCommandWithArgs(String command, [List<String>? args])
: command = command.trim(),
args = args?.toList() ?? <String>[] {
// NOTE: checks the trimmed field, not the parameter:
if (this.command.isEmpty) {
throw ArgumentError("Empty command!");
}
}