GoogleSecuritySafebrowsingV5BatchGetHashListsResponse.fromJson constructor

GoogleSecuritySafebrowsingV5BatchGetHashListsResponse.fromJson(
  1. Map json_
)

Implementation

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