copyWith method
UpdateMessageEdited
copyWith({
- int? chatId,
- int? messageId,
- int? editDate,
- 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,
);