copyWith method
Implementation
GetPollVoters copyWith({
int? chatId,
int? messageId,
int? optionId,
int? offset,
int? limit,
}) =>
GetPollVoters(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
optionId: optionId ?? this.optionId,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);