copyWith method
Implementation
MessagePollOptionDeleted copyWith({
int? pollMessageId,
String? optionId,
FormattedText? text,
}) => MessagePollOptionDeleted(
pollMessageId: pollMessageId ?? this.pollMessageId,
optionId: optionId ?? this.optionId,
text: text ?? this.text,
);