OmiCallModel constructor

OmiCallModel({
  1. required int callId,
  2. required bool incoming,
  3. required int callState,
  4. required String callerNumber,
  5. required bool isVideo,
  6. required String omiId,
  7. required String uuid,
  8. required String callerName,
  9. required bool muted,
  10. required bool speaker,
  11. required bool onHold,
  12. required String numberToCall,
  13. required bool connected,
  14. required double totalMBsUsed,
  15. required double mos,
  16. required double latency,
  17. required double jitter,
  18. required double ppl,
})

Implementation

OmiCallModel({
  required this.callId,
  required this.incoming,
  required this.callState,
  required this.callerNumber,
  required this.isVideo,
  required this.omiId,
  required this.uuid,
  required this.callerName,
  required this.muted,
  required this.speaker,
  required this.onHold,
  required this.numberToCall,
  required this.connected,
  required this.totalMBsUsed,
  required this.mos,
  required this.latency,
  required this.jitter,
  required this.ppl,
});