Command constructor

const Command({
  1. String? flag,
  2. String? name,
  3. bool isMandatory = false,
  4. required String commandHelp,
  5. required CommandType commandType,
})

Implementation

const Command({
  this.flag,
  this.name,
  this.isMandatory = false,
  required this.commandHelp,
  required this.commandType,
});