KeyboardButtonPollType constructor

const KeyboardButtonPollType({
  1. @JsonKey(name: 'type') PollType? type,
})

Constructs a KeyboardButtonPollType object

Implementation

const factory KeyboardButtonPollType({
  /// Optional. If quiz is passed, the user will be allowed to create only
  /// polls in the quiz mode. If regular is passed, only regular polls will be
  /// allowed. Otherwise, the user will be allowed to create a poll of any
  /// type.
  @JsonKey(name: 'type') PollType? type,
}) = _KeyboardButtonPollType;