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