ReplyMarkupShowKeyboard constructor

const ReplyMarkupShowKeyboard({
  1. required List<List<KeyboardButton>> rows,
  2. required bool isPersistent,
  3. required bool resizeKeyboard,
  4. required bool oneTime,
  5. required bool isPersonal,
  6. required String inputFieldPlaceholder,
})

Contains a custom keyboard layout to quickly reply to bots

Implementation

const ReplyMarkupShowKeyboard({
  required this.rows,
  required this.isPersistent,
  required this.resizeKeyboard,
  required this.oneTime,
  required this.isPersonal,
  required this.inputFieldPlaceholder,
});