copyWith method

UpdatePendingMessage copyWith({
  1. int? chatId,
  2. int? forumTopicId,
  3. int? draftId,
  4. 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,
);