copyWith method
Implementation
GetPollOptionProperties copyWith({
int? chatId,
int? messageId,
String? pollOptionId,
}) => GetPollOptionProperties(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
pollOptionId: pollOptionId ?? this.pollOptionId,
);