toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'call_cid'] = this.callCid;
json[r'created_at'] = this.createdAt.toUtc().toIso8601String();
json[r'digit'] = this.digit;
json[r'duration_ms'] = this.durationMs;
json[r'seq_number'] = this.seqNumber;
json[r'timestamp'] = this.timestamp.toUtc().toIso8601String();
json[r'type'] = this.type;
json[r'user'] = this.user;
return json;
}