toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'api_key'] = this.apiKey;
json[r'call_custom_data'] = this.callCustomData;
json[r'call_id'] = this.callId;
json[r'call_type'] = this.callType;
json[r'token'] = this.token;
json[r'user_custom_data'] = this.userCustomData;
json[r'user_id'] = this.userId;
return json;
}