copyWith method

GetPollVoteStatistics copyWith({
  1. int? chatId,
  2. int? messageId,
  3. bool? isDark,
})

Implementation

GetPollVoteStatistics copyWith({int? chatId, int? messageId, bool? isDark}) =>
    GetPollVoteStatistics(
      chatId: chatId ?? this.chatId,
      messageId: messageId ?? this.messageId,
      isDark: isDark ?? this.isDark,
    );