GoogleCloudRetailV2AddCatalogAttributeRequest.fromJson constructor

GoogleCloudRetailV2AddCatalogAttributeRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRetailV2AddCatalogAttributeRequest.fromJson(core.Map json_)
  : this(
      catalogAttribute:
          json_.containsKey('catalogAttribute')
              ? GoogleCloudRetailV2CatalogAttribute.fromJson(
                json_['catalogAttribute']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );