BotCommand constructor

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

Implementation

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