copyWith method
UpdatePendingMessage
copyWith({
- int? chatId,
- int? forumTopicId,
- int? draftId,
- MessageContent? content,
Implementation
UpdatePendingMessage copyWith({
int? chatId,
int? forumTopicId,
int? draftId,
MessageContent? content,
}) => UpdatePendingMessage(
chatId: chatId ?? this.chatId,
forumTopicId: forumTopicId ?? this.forumTopicId,
draftId: draftId ?? this.draftId,
content: content ?? this.content,
);