GoogleSecuritySafebrowsingV4ThreatEntrySet.fromJson constructor
GoogleSecuritySafebrowsingV4ThreatEntrySet.fromJson(
- Map json_
Implementation
GoogleSecuritySafebrowsingV4ThreatEntrySet.fromJson(core.Map json_)
: this(
compressionType: json_.containsKey('compressionType')
? json_['compressionType'] as core.String
: null,
rawHashes: json_.containsKey('rawHashes')
? GoogleSecuritySafebrowsingV4RawHashes.fromJson(
json_['rawHashes'] as core.Map<core.String, core.dynamic>)
: null,
rawIndices: json_.containsKey('rawIndices')
? GoogleSecuritySafebrowsingV4RawIndices.fromJson(
json_['rawIndices'] as core.Map<core.String, core.dynamic>)
: null,
riceHashes: json_.containsKey('riceHashes')
? GoogleSecuritySafebrowsingV4RiceDeltaEncoding.fromJson(
json_['riceHashes'] as core.Map<core.String, core.dynamic>)
: null,
riceIndices: json_.containsKey('riceIndices')
? GoogleSecuritySafebrowsingV4RiceDeltaEncoding.fromJson(
json_['riceIndices'] as core.Map<core.String, core.dynamic>)
: null,
);