ReplicationCycle constructor

ReplicationCycle({
  1. int? cycleNumber,
  2. String? endTime,
  3. Status? error,
  4. String? name,
  5. int? progressPercent,
  6. String? startTime,
  7. String? state,
  8. List<CycleStep>? steps,
  9. String? totalPauseDuration,
  10. List<MigrationWarning>? warnings,
})

Implementation

ReplicationCycle({
  this.cycleNumber,
  this.endTime,
  this.error,
  this.name,
  this.progressPercent,
  this.startTime,
  this.state,
  this.steps,
  this.totalPauseDuration,
  this.warnings,
});