SlaInformationOngoingCycleDTO constructor

SlaInformationOngoingCycleDTO({
  1. DateDTO? breachTime,
  2. bool? breached,
  3. DurationDTO? elapsedTime,
  4. DurationDTO? goalDuration,
  5. bool? paused,
  6. DurationDTO? remainingTime,
  7. DateDTO? startTime,
  8. 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;