GoogleCloudIntegrationsV1alphaBooleanParameterArray.fromJson constructor

GoogleCloudIntegrationsV1alphaBooleanParameterArray.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaBooleanParameterArray.fromJson(core.Map json_)
  : this(
      booleanValues: (json_['booleanValues'] as core.List?)
          ?.map((value) => value as core.bool)
          .toList(),
    );