copyWith method
Implementation
@override
KeyboardButtonTypeRequestPoll copyWith({
bool? forceRegular,
bool? forceQuiz,
}) => KeyboardButtonTypeRequestPoll(
forceRegular: forceRegular ?? this.forceRegular,
forceQuiz: forceQuiz ?? this.forceQuiz,
);