PhoneCallDiscarded constructor

const PhoneCallDiscarded({
  1. required bool needRating,
  2. required bool needDebug,
  3. required bool video,
  4. required int id,
  5. PhoneCallDiscardReasonBase? reason,
  6. int? duration,
})

Phone Call Discarded constructor.

Implementation

const PhoneCallDiscarded({
  required this.needRating,
  required this.needDebug,
  required this.video,
  required this.id,
  this.reason,
  this.duration,
}) : super._();