copyWith method

  1. @override
ReplyMarkupRemoveKeyboard copyWith({
  1. bool? isPersonal,
})
override

Implementation

@override
ReplyMarkupRemoveKeyboard copyWith({
  bool? isPersonal,
}) =>
    ReplyMarkupRemoveKeyboard(
      isPersonal: isPersonal ?? this.isPersonal,
    );