IndexRefreshStatusResponseVariant2 constructor

const IndexRefreshStatusResponseVariant2({
  1. required IndexRefreshStatusResponseVariant2StatusStatus status,
  2. required String indexType,
  3. required num? total,
  4. required num? indexed,
  5. required String? startedAt,
  6. required String? completedAt,
  7. required String? failedAt,
  8. required String? error,
})

Implementation

const IndexRefreshStatusResponseVariant2({
  required this.status,
  required this.indexType,
  required this.total,
  required this.indexed,
  required this.startedAt,
  required this.completedAt,
  required this.failedAt,
  required this.error,
});