GoogleCloudIntegrationsV1alphaEventParameter.fromJson constructor

GoogleCloudIntegrationsV1alphaEventParameter.fromJson(
  1. Map json_
)

Implementation

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