Command constructor
const
Command({
- String? flag,
- String? name,
- bool isMandatory = false,
- required String commandHelp,
- required CommandType commandType,
Implementation
const Command({
this.flag,
this.name,
this.isMandatory = false,
required this.commandHelp,
required this.commandType,
});