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