copyWith method

ReplyMarkupForceReply copyWith({
  1. bool? isPersonal,
  2. String? inputFieldPlaceholder,
})

Implementation

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