copyWith method

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

Implementation

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