GoogleCloudIntegrationsV1alphaDoubleParameterArray.fromJson constructor
GoogleCloudIntegrationsV1alphaDoubleParameterArray.fromJson(
- Map json_
Implementation
GoogleCloudIntegrationsV1alphaDoubleParameterArray.fromJson(core.Map json_)
: this(
doubleValues: json_.containsKey('doubleValues')
? (json_['doubleValues'] as core.List)
.map((value) => (value as core.num).toDouble())
.toList()
: null,
);