copyWith method

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

Implementation

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