GoogleSecuritySafebrowsingV5FullHashFullHashDetail.fromJson constructor
GoogleSecuritySafebrowsingV5FullHashFullHashDetail.fromJson(
- Map json_
Implementation
GoogleSecuritySafebrowsingV5FullHashFullHashDetail.fromJson(core.Map json_)
: this(
attributes: json_.containsKey('attributes')
? (json_['attributes'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
threatType: json_.containsKey('threatType')
? json_['threatType'] as core.String
: null,
);