GoogleSecuritySafebrowsingV4ListThreatListsResponse.fromJson constructor
GoogleSecuritySafebrowsingV4ListThreatListsResponse.fromJson(
- Map json_
Implementation
GoogleSecuritySafebrowsingV4ListThreatListsResponse.fromJson(core.Map json_)
: this(
threatLists: json_.containsKey('threatLists')
? (json_['threatLists'] as core.List)
.map((value) =>
GoogleSecuritySafebrowsingV4ThreatListDescriptor.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);