copyWith method

ReadAllForumTopicMentions copyWith({
  1. int? chatId,
  2. int? forumTopicId,
})

Implementation

ReadAllForumTopicMentions copyWith({int? chatId, int? forumTopicId}) =>
    ReadAllForumTopicMentions(
      chatId: chatId ?? this.chatId,
      forumTopicId: forumTopicId ?? this.forumTopicId,
    );