BotCommand constructor

BotCommand({
  1. String? extra,
  2. int? client_id,
  3. string? command,
  4. string? description,
})

Implementation

BotCommand({
  super.extra,
  super.client_id,
  this.command,
  this.description,
});