GoogleCloudIntegrationsV1alphaDoubleParameterArray.fromJson constructor

GoogleCloudIntegrationsV1alphaDoubleParameterArray.fromJson(
  1. Map json_
)

Implementation

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