BotCommand constructor

const BotCommand({
  1. required String command,
  2. required String description,
})

Represents a command supported by a bot

Implementation

const BotCommand({
  required this.command,
  required this.description,
});