copyWith method
Implementation
CommandBuilder copyWith({
String? name,
String? command,
}) {
return CommandBuilder(
command ?? this.command,
);
}
CommandBuilder copyWith({
String? name,
String? command,
}) {
return CommandBuilder(
command ?? this.command,
);
}