toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final device = this.device;
  final dnsErrorType = this.dnsErrorType;
  final expandedUri = this.expandedUri;
  final httpErrorCode = this.httpErrorCode;
  final lastCheckedTime = this.lastCheckedTime;
  return {
    'device': ?device,
    'dnsErrorType': ?dnsErrorType,
    'expandedUri': ?expandedUri,
    'httpErrorCode': ?httpErrorCode,
    'lastCheckedTime': ?lastCheckedTime,
  };
}