copyWith method
Implementation
@override
ReplyMarkupForceReply copyWith({
  bool? isPersonal,
  String? inputFieldPlaceholder,
}) =>
    ReplyMarkupForceReply(
      isPersonal: isPersonal ?? this.isPersonal,
      inputFieldPlaceholder:
          inputFieldPlaceholder ?? this.inputFieldPlaceholder,
    );