OmiCallModel.fromJson constructor

OmiCallModel.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory OmiCallModel.fromJson(Map<String, dynamic> json) {
  return OmiCallModel(
    callId: json['callId'],
    incoming: json['incoming'],
    callState: json['callState'],
    callerNumber: json['callerNumber'],
    isVideo: json['isVideo'],
    omiId: json['omiId'],
    uuid: json['uuid'],
    callerName: json['callerName'],
    muted: json['muted'],
    speaker: json['speaker'],
    onHold: json['onHold'],
    numberToCall: json['numberToCall'],
    connected: json['connected'],
    totalMBsUsed: json['totalMBsUsed'],
    mos: json['mos'],
    latency: json['latency'],
    jitter: json['jitter'],
    ppl: json['ppl'],
  );
}