GoogleCloudIntegrationsV1alphaParameterMap.fromJson constructor

GoogleCloudIntegrationsV1alphaParameterMap.fromJson(
  1. Map json_
)

Implementation

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