GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.fromJson constructor

GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.fromJson(core.Map json_)
    : this(
        matches: json_.containsKey('matches')
            ? (json_['matches'] as core.List)
                .map((value) =>
                    GoogleSecuritySafebrowsingV4ThreatMatch.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );