getCurrentMonthList function

List<DateTime> getCurrentMonthList()

Implementation

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