GoogleSecuritySafebrowsingV4ListThreatListsResponse.fromJson constructor

GoogleSecuritySafebrowsingV4ListThreatListsResponse.fromJson(
  1. Map json_
)

Implementation

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