BotCommand constructor

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

Creates a new BotCommand object.

Implementation

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