toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final abortCause = this.abortCause;
  final destinationEgressLocation = this.destinationEgressLocation;
  final edgeResponses = this.edgeResponses;
  final endpointInfo = this.endpointInfo;
  final error = this.error;
  final probedAllDevices = this.probedAllDevices;
  final probingLatency = this.probingLatency;
  final result = this.result;
  final sentProbeCount = this.sentProbeCount;
  final successfulProbeCount = this.successfulProbeCount;
  final verifyTime = this.verifyTime;
  return {
    'abortCause': ?abortCause,
    'destinationEgressLocation': ?destinationEgressLocation,
    'edgeResponses': ?edgeResponses,
    'endpointInfo': ?endpointInfo,
    'error': ?error,
    'probedAllDevices': ?probedAllDevices,
    'probingLatency': ?probingLatency,
    'result': ?result,
    'sentProbeCount': ?sentProbeCount,
    'successfulProbeCount': ?successfulProbeCount,
    'verifyTime': ?verifyTime,
  };
}