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