KeyboardButton constructor

KeyboardButton({
  1. String? extra,
  2. int? client_id,
  3. string? text,
  4. KeyboardButtonType? type,
})

Implementation

KeyboardButton({
  super.extra,
  super.client_id,
  this.text,
  this.type,
});