PollOption constructor

PollOption({
  1. String? extra,
  2. int? client_id,
  3. string? text,
  4. int32? voter_count,
  5. int32? vote_percentage,
  6. Bool? is_chosen,
  7. Bool? is_being_chosen,
})

Implementation

PollOption({
  super.extra,
  super.client_id,
  this.text,
  this.voter_count,
  this.vote_percentage,
  this.is_chosen,
  this.is_being_chosen,
});