GoogleSecuritySafebrowsingV4ThreatEntryMetadata.fromJson constructor

GoogleSecuritySafebrowsingV4ThreatEntryMetadata.fromJson(
  1. Map json_
)

Implementation

GoogleSecuritySafebrowsingV4ThreatEntryMetadata.fromJson(core.Map json_)
    : this(
        entries: (json_['entries'] as core.List?)
            ?.map((value) =>
                GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry
                    .fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
      );