SlaInformationCompletedCycleDTO constructor

SlaInformationCompletedCycleDTO({
  1. DateDTO? breachTime,
  2. bool? breached,
  3. DurationDTO? elapsedTime,
  4. DurationDTO? goalDuration,
  5. DurationDTO? remainingTime,
  6. DateDTO? startTime,
  7. DateDTO? stopTime,
})

Implementation

SlaInformationCompletedCycleDTO(
    {this.breachTime,
    bool? breached,
    this.elapsedTime,
    this.goalDuration,
    this.remainingTime,
    this.startTime,
    this.stopTime})
    : breached = breached ?? false;