GoogleCloudDatacatalogV1SearchCatalogRequestScope.fromJson constructor

GoogleCloudDatacatalogV1SearchCatalogRequestScope.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1SearchCatalogRequestScope.fromJson(core.Map json_)
  : this(
      includeGcpPublicDatasets:
          json_['includeGcpPublicDatasets'] as core.bool?,
      includeOrgIds: (json_['includeOrgIds'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      includeProjectIds: (json_['includeProjectIds'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      includePublicTagTemplates:
          json_['includePublicTagTemplates'] as core.bool?,
      restrictedLocations: (json_['restrictedLocations'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      starredOnly: json_['starredOnly'] as core.bool?,
    );