InputMessagePoll constructor

InputMessagePoll({
  1. String? extra,
  2. int? client_id,
  3. string? question,
  4. vector<string>? options,
  5. Bool? is_anonymous,
  6. PollType? type,
  7. int32? open_period,
  8. int32? close_date,
  9. Bool? is_closed,
})

Implementation

InputMessagePoll({
  super.extra,
  super.client_id,
  this.question,
  this.options,
  this.is_anonymous,
  this.type,
  this.open_period,
  this.close_date,
  this.is_closed,
});