Command constructor

Command({
  1. required String command,
  2. String? use,
  3. List<String>? aliases,
  4. String? description,
  5. String? example,
  6. List<Command>? subcommands,
  7. Map<String, String>? supportedFlags,
})

Implementation

Command(
    {required this.command,
    this.use,
    this.aliases,
    this.description,
    this.example,
    this.subcommands,
    this.supportedFlags});