GoogleCloudIntegrationsV1alphaEventParameter.fromJson constructor

GoogleCloudIntegrationsV1alphaEventParameter.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaEventParameter.fromJson(core.Map json_)
  : this(
      key: json_['key'] as core.String?,
      masked: json_['masked'] as core.bool?,
      value: json_.containsKey('value')
          ? GoogleCloudIntegrationsV1alphaValueType.fromJson(
              json_['value'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );