GoogleCloudContentwarehouseV1CustomWeightsMetadata.fromJson constructor
GoogleCloudContentwarehouseV1CustomWeightsMetadata.fromJson(
- Map json_
Implementation
GoogleCloudContentwarehouseV1CustomWeightsMetadata.fromJson(core.Map json_)
: this(
weightedSchemaProperties: json_
.containsKey('weightedSchemaProperties')
? (json_['weightedSchemaProperties'] as core.List)
.map((value) =>
GoogleCloudContentwarehouseV1WeightedSchemaProperty
.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);