GoogleCloudChannelV1Product.fromJson constructor

GoogleCloudChannelV1Product.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1Product.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?,
    );