ReplyKeyboardMarkup constructor

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

Implementation

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