GoogleCloudChannelV1Sku.fromJson constructor

GoogleCloudChannelV1Sku.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1Sku.fromJson(core.Map json_)
  : this(
      marketingInfo: json_.containsKey('marketingInfo')
          ? GoogleCloudChannelV1MarketingInfo.fromJson(
              json_['marketingInfo'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      name: json_['name'] as core.String?,
      product: json_.containsKey('product')
          ? GoogleCloudChannelV1Product.fromJson(
              json_['product'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );