GoogleSecuritySafebrowsingV4FindFullHashesResponse.fromJson constructor

GoogleSecuritySafebrowsingV4FindFullHashesResponse.fromJson(
  1. Map json_
)

Implementation

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