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