copyWith method
Implementation
SetPollAnswer copyWith({
int? chatId,
int? messageId,
List<int>? optionIds,
}) =>
SetPollAnswer(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
optionIds: optionIds ?? this.optionIds,
);