Poll constructor

Poll({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. string? question,
  5. vector<PollOption>? options,
  6. int32? total_voter_count,
  7. vector<int53>? recent_voter_user_ids,
  8. Bool? is_anonymous,
  9. PollType? type,
  10. int32? open_period,
  11. int32? close_date,
  12. Bool? is_closed,
})

Implementation

Poll({
  super.extra,
  super.client_id,
  this.id,
  this.question,
  this.options,
  this.total_voter_count,
  this.recent_voter_user_ids,
  this.is_anonymous,
  this.type,
  this.open_period,
  this.close_date,
  this.is_closed,
});