copyWith method

UpdateMessageEdited copyWith({
  1. int? chatId,
  2. int? messageId,
  3. int? editDate,
  4. ReplyMarkup? replyMarkup,
})

Implementation

UpdateMessageEdited copyWith({
  int? chatId,
  int? messageId,
  int? editDate,
  ReplyMarkup? replyMarkup,
}) => UpdateMessageEdited(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  editDate: editDate ?? this.editDate,
  replyMarkup: replyMarkup ?? this.replyMarkup,
);