getCurrentDayList function

List<DateTime> getCurrentDayList()

Implementation

List<DateTime> getCurrentDayList() => [
      DateTime(DateTime.now().year, DateTime.now().month, DateTime.now().day)
          .toLocal(),
      DateTime(
              DateTime.now().year, DateTime.now().month, DateTime.now().day + 1,)
          .toLocal(),
    ];