TableIndex constructor

const TableIndex({
  1. required List<String> columns,
  2. required String type,
  3. required String name,
  4. List<int> fields = const [],
  5. String? typeUrl,
  6. int? numRowsIndexed,
  7. int? numSegments,
  8. int? totalSizeBytes,
  9. Map<String, dynamic> details = const {},
  10. Map<String, dynamic> statistics = const {},
})

Implementation

const TableIndex({
  required this.columns,
  required this.type,
  required this.name,
  this.fields = const [],
  this.typeUrl,
  this.numRowsIndexed,
  this.numSegments,
  this.totalSizeBytes,
  this.details = const {},
  this.statistics = const {},
});