MigrationProgress constructor

const MigrationProgress(
  1. String id,
  2. String checksum,
  3. int step,
  4. MigrationStepState state,
  5. String phase,
  6. String? failure, {
  7. BackfillProgress? backfill,
})

Records a step checkpoint for reporting and recovery inspection.

Implementation

const MigrationProgress(
  this.id,
  this.checksum,
  this.step,
  this.state,
  this.phase,
  this.failure, {
  this.backfill,
});