RegimenItemDto constructor

RegimenItemDto({
  1. int? date,
  2. int? dayNumber,
  3. Weekday? weekday,
  4. CodeStubDto? dayPeriod,
  5. int? timeOfDay,
  6. AdministrationQuantity? administratedQuantity,
})

Returns a new RegimenItemDto instance.

Implementation

RegimenItemDto({
  this.date,
  this.dayNumber,
  this.weekday,
  this.dayPeriod,
  this.timeOfDay,
  this.administratedQuantity,
});