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