DayType constructor

const DayType({
  1. required bool isNoChange,
  2. required bool hasSunrise,
  3. required bool hasSunset,
})

Implementation

const DayType({
  required this.isNoChange,
  required this.hasSunrise,
  required this.hasSunset,
});