TableSchemaDefinitionClusteringKey constructor

const TableSchemaDefinitionClusteringKey({
  1. required Input<String> name,
  2. required Input<String> orderBy,
})

Creates a new TableSchemaDefinitionClusteringKey. name The name of the clustering key column. orderBy The order modifier. Valid values: ASC, DESC.

Implementation

const TableSchemaDefinitionClusteringKey({
  required this.name,
  required this.orderBy,
});