GoogleCloudIntegrationsV1alphaIntegrationConfigParameter.fromJson constructor
GoogleCloudIntegrationsV1alphaIntegrationConfigParameter.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaIntegrationConfigParameter.fromJson(
core.Map json_)
: this(
parameter: json_.containsKey('parameter')
? GoogleCloudIntegrationsV1alphaIntegrationParameter.fromJson(
json_['parameter'] as core.Map<core.String, core.dynamic>)
: null,
value: json_.containsKey('value')
? GoogleCloudIntegrationsV1alphaValueType.fromJson(
json_['value'] as core.Map<core.String, core.dynamic>)
: null,
);