copyWith method
ReplyMarkupShowKeyboard
copyWith({
- List<
List< ? rows,KeyboardButton> > - bool? resizeKeyboard,
- bool? oneTime,
- bool? isPersonal,
- String? inputFieldPlaceholder,
override
Implementation
@override
ReplyMarkupShowKeyboard copyWith({
List<List<KeyboardButton>>? rows,
bool? resizeKeyboard,
bool? oneTime,
bool? isPersonal,
String? inputFieldPlaceholder,
}) => ReplyMarkupShowKeyboard(
rows: rows ?? this.rows,
resizeKeyboard: resizeKeyboard ?? this.resizeKeyboard,
oneTime: oneTime ?? this.oneTime,
isPersonal: isPersonal ?? this.isPersonal,
inputFieldPlaceholder: inputFieldPlaceholder ?? this.inputFieldPlaceholder,
);