BotCommand constructor

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

Bot Command constructor.

Implementation

const BotCommand({
  required this.ephemeral,
  required this.command,
  required this.description,
}) : super._();