ReplyKeyboardMarkup constructor

const ReplyKeyboardMarkup({
  1. required bool resize,
  2. required bool singleUse,
  3. required bool selective,
  4. required bool persistent,
  5. required List<KeyboardButtonRowBase> rows,
  6. String? placeholder,
})

Reply Keyboard Markup constructor.

Implementation

const ReplyKeyboardMarkup({
  required this.resize,
  required this.singleUse,
  required this.selective,
  required this.persistent,
  required this.rows,
  this.placeholder,
}) : super._();