GoogleCloudChannelV1Constraints.fromJson constructor

GoogleCloudChannelV1Constraints.fromJson(
  1. Map json_
)

Implementation

GoogleCloudChannelV1Constraints.fromJson(core.Map json_)
  : this(
      customerConstraints:
          json_.containsKey('customerConstraints')
              ? GoogleCloudChannelV1CustomerConstraints.fromJson(
                json_['customerConstraints']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );