GoogleCloudDatacatalogV1FieldTypeEnumType.fromJson constructor

GoogleCloudDatacatalogV1FieldTypeEnumType.fromJson(
  1. Map json_
)

Implementation

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