toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final callDurationSeconds = this.callDurationSeconds;
  final callStatus = this.callStatus;
  final callTrackingDisplayLocation = this.callTrackingDisplayLocation;
  final callerAreaCode = this.callerAreaCode;
  final callerCountryCode = this.callerCountryCode;
  final endCallDateTime = this.endCallDateTime;
  final resourceName = this.resourceName;
  final startCallDateTime = this.startCallDateTime;
  final type = this.type;
  return {
    'callDurationSeconds': ?callDurationSeconds,
    'callStatus': ?callStatus,
    'callTrackingDisplayLocation': ?callTrackingDisplayLocation,
    'callerAreaCode': ?callerAreaCode,
    'callerCountryCode': ?callerCountryCode,
    'endCallDateTime': ?endCallDateTime,
    'resourceName': ?resourceName,
    'startCallDateTime': ?startCallDateTime,
    'type': ?type,
  };
}