BotCommand constructor

BotCommand({
  1. required int id,
  2. required String command,
  3. required int mentor,
  4. required int bot,
})

Returns a new BotCommand instance.

Implementation

BotCommand({
  required this.id,
  required this.command,
  required this.mentor,
  required this.bot,
});