GoogleCloudDatacatalogV1beta1Schema.fromJson constructor
GoogleCloudDatacatalogV1beta1Schema.fromJson(
- Map _json
Implementation
GoogleCloudDatacatalogV1beta1Schema.fromJson(core.Map _json)
: this(
columns: _json.containsKey('columns')
? (_json['columns'] as core.List)
.map<GoogleCloudDatacatalogV1beta1ColumnSchema>((value) =>
GoogleCloudDatacatalogV1beta1ColumnSchema.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);