GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.fromJson constructor

GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.fromJson(
  core.Map json_,
) : this(
      listUpdateResponses: (json_['listUpdateResponses'] as core.List?)
          ?.map(
            (value) =>
                GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      minimumWaitDuration: json_['minimumWaitDuration'] as core.String?,
    );