GoogleCloudIntegrationsV1alphaParameterMap.fromJson constructor

GoogleCloudIntegrationsV1alphaParameterMap.fromJson(
  1. Map json_
)

Implementation

GoogleCloudIntegrationsV1alphaParameterMap.fromJson(core.Map json_)
  : this(
      entries: (json_['entries'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudIntegrationsV1alphaParameterMapEntry.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      keyType: json_['keyType'] as core.String?,
      valueType: json_['valueType'] as core.String?,
    );