CallStateDiscarded constructor

CallStateDiscarded({
  1. String? extra,
  2. int? client_id,
  3. CallDiscardReason? reason,
  4. Bool? need_rating,
  5. Bool? need_debug_information,
  6. Bool? need_log,
})

Implementation

CallStateDiscarded({
  super.extra,
  super.client_id,
  this.reason,
  this.need_rating,
  this.need_debug_information,
  this.need_log,
});