toJson method

Map<String, dynamic> toJson()

Implementation

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