GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.fromJson constructor
GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.fromJson(
- Map json_
Implementation
GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.fromJson(core.Map json_)
: this(
client: json_.containsKey('client')
? GoogleSecuritySafebrowsingV4ClientInfo.fromJson(
json_['client'] as core.Map<core.String, core.dynamic>)
: null,
threatInfo: json_.containsKey('threatInfo')
? GoogleSecuritySafebrowsingV4ThreatInfo.fromJson(
json_['threatInfo'] as core.Map<core.String, core.dynamic>)
: null,
);