FetchedIndex constructor

const FetchedIndex({
  1. required String name,
  2. required String createdAt,
  3. required String updatedAt,
  4. required int entries,
  5. required int dataSize,
  6. required int fileSize,
  7. required int lastBuildTimeS,
  8. required int numberOfPendingTasks,
  9. required bool pendingTask,
  10. String? primary,
  11. List<String>? replicas,
})

Returns a new FetchedIndex instance.

Implementation

const FetchedIndex({
  required this.name,
  required this.createdAt,
  required this.updatedAt,
  required this.entries,
  required this.dataSize,
  required this.fileSize,
  required this.lastBuildTimeS,
  required this.numberOfPendingTasks,
  required this.pendingTask,
  this.primary,
  this.replicas,
});