copyWith method

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

Implementation

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