LocalSecondaryIndex constructor

LocalSecondaryIndex({
  1. required String indexName,
  2. required List<KeySchemaElement> keySchema,
  3. required Projection projection,
})

Implementation

LocalSecondaryIndex({
  required this.indexName,
  required this.keySchema,
  required this.projection,
});