getOvulationDate function

DateTime getOvulationDate(
  1. DateTime currentDate,
  2. int periodLength
)

Implementation

DateTime getOvulationDate(DateTime currentDate, int periodLength) {
  DateTime currentDay = DateTime.now();
  return currentDay;
}