CallStateDiscarded constructor

const CallStateDiscarded({
  1. required CallDiscardReason reason,
  2. required bool needRating,
  3. required bool needDebugInformation,
  4. required bool needLog,
})

The call has ended successfully

Implementation

const CallStateDiscarded({
  required this.reason,
  required this.needRating,
  required this.needDebugInformation,
  required this.needLog,
});