CycleData constructor

CycleData({
  1. String? cycleStartDate,
  2. String? cycleEndDate,
  3. bool? isCurrentCycle,
  4. List<CycleDates>? cycleDates,
})

Implementation

CycleData(
    {this.cycleStartDate,
    this.cycleEndDate,
    this.isCurrentCycle,
    this.cycleDates});