GoogleCloudDatacatalogV1beta1FieldTypeEnumType.fromJson constructor

GoogleCloudDatacatalogV1beta1FieldTypeEnumType.fromJson(
  1. Map _json
)

Implementation

GoogleCloudDatacatalogV1beta1FieldTypeEnumType.fromJson(core.Map _json)
    : this(
        allowedValues: _json.containsKey('allowedValues')
            ? (_json['allowedValues'] as core.List)
                .map<GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue>(
                    (value) =>
                        GoogleCloudDatacatalogV1beta1FieldTypeEnumTypeEnumValue
                            .fromJson(
                                value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );