GlobalSecondaryIndexInfo constructor

GlobalSecondaryIndexInfo({
  1. String? indexName,
  2. List<KeySchemaElement>? keySchema,
  3. Projection? projection,
  4. ProvisionedThroughput? provisionedThroughput,
})

Implementation

GlobalSecondaryIndexInfo({
  this.indexName,
  this.keySchema,
  this.projection,
  this.provisionedThroughput,
});