ReplyKeyboardMarkup constructor

ReplyKeyboardMarkup({
  1. required List<List<KeyboardButton>> keyboard,
  2. bool? resizeKeyboard,
  3. bool? oneTimeKeyboard,
  4. String? inputFieldPlaceholder,
  5. bool? selective,
  6. bool? isPersistent,
})

Constructs a ReplyKeyboardMarkup object

Implementation

ReplyKeyboardMarkup({
  required this.keyboard,
  this.resizeKeyboard,
  this.oneTimeKeyboard,
  this.inputFieldPlaceholder,
  this.selective,
  this.isPersistent,
});