GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson constructor

GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1WeightedSchemaProperty.fromJson(core.Map json_)
    : this(
        documentSchemaName: json_.containsKey('documentSchemaName')
            ? json_['documentSchemaName'] as core.String
            : null,
        propertyNames: json_.containsKey('propertyNames')
            ? (json_['propertyNames'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );