PartitionIndexDescriptor constructor

PartitionIndexDescriptor({
  1. required String indexName,
  2. required PartitionIndexStatus indexStatus,
  3. required List<KeySchemaElement> keys,
  4. List<BackfillError>? backfillErrors,
})

Implementation

PartitionIndexDescriptor({
  required this.indexName,
  required this.indexStatus,
  required this.keys,
  this.backfillErrors,
});