getExpectedDueDate method
get Expected Due Date for baby
Implementation
Future<String> getExpectedDueDate() async {
final dbHelper = MenstrualCycleDbHelper.instance;
String expectedDueDate = "";
String lastPeriodDate = await dbHelper.getLastPeriodDate();
if (lastPeriodDate.isNotEmpty) {
expectedDueDate = CalenderDateUtils.dateWithYear(
DateTime.parse(lastPeriodDate).add(Duration(days: 280)));
}
return expectedDueDate;
}