GroupCommand constructor

GroupCommand({
  1. Map<String, Command>? commands,
  2. Command? defaultCommand,
  3. String? description,
})

Implementation

GroupCommand(
    {Map<String, Command>? commands, this.defaultCommand, this.description}) {
  this.commands = commands ?? {};
}