BotMenuButton constructor

const BotMenuButton({
  1. required String text,
  2. required String url,
  3. dynamic extra,
  4. int? clientId,
})

Describes a button to be shown instead of bot commands menu button

Implementation

const BotMenuButton({
  required this.text,
  required this.url,
  this.extra,
  this.clientId,
});