copyWith method

KeyboardButtonTypeRequestPoll copyWith({
  1. bool? forceRegular,
  2. bool? forceQuiz,
})

Implementation

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