toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dnsError = this.dnsError;
final expandedUrl = this.expandedUrl;
final httpError = this.httpError;
final invalidPage = this.invalidPage;
final lastCheckTime = this.lastCheckTime;
final platform = this.platform;
final redirectionError = this.redirectionError;
final urlRejected = this.urlRejected;
return {
'dnsError': ?dnsError,
'expandedUrl': ?expandedUrl,
'httpError': ?httpError,
'invalidPage': ?invalidPage,
'lastCheckTime': ?lastCheckTime,
'platform': ?platform,
'redirectionError': ?redirectionError,
'urlRejected': ?urlRejected,
};
}