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