DestinationNotWorkingEvidence.fromJson constructor
DestinationNotWorkingEvidence.fromJson(
- Map json_
Implementation
DestinationNotWorkingEvidence.fromJson(core.Map json_)
: this(
dnsError: json_.containsKey('dnsError')
? json_['dnsError'] as core.String
: null,
expandedUrl: json_.containsKey('expandedUrl')
? json_['expandedUrl'] as core.String
: null,
httpError: json_.containsKey('httpError')
? json_['httpError'] as core.int
: null,
invalidPage: json_.containsKey('invalidPage')
? json_['invalidPage'] as core.String
: null,
lastCheckTime: json_.containsKey('lastCheckTime')
? json_['lastCheckTime'] as core.String
: null,
platform: json_.containsKey('platform')
? json_['platform'] as core.String
: null,
redirectionError: json_.containsKey('redirectionError')
? json_['redirectionError'] as core.String
: null,
urlRejected: json_.containsKey('urlRejected')
? json_['urlRejected'] as core.String
: null,
);