ConnectorConfigurationParameterValue.fromJson constructor
ConnectorConfigurationParameterValue.fromJson(
- Map json_
Implementation
ConnectorConfigurationParameterValue.fromJson(core.Map json_)
: this(
boolValue: json_['boolValue'] as core.bool?,
doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
int32Value: json_['int32Value'] as core.int?,
secretValue: json_.containsKey('secretValue')
? ConnectorConfigurationSecret.fromJson(
json_['secretValue'] as core.Map<core.String, core.dynamic>,
)
: null,
stringValue: json_['stringValue'] as core.String?,
);