getLastDayOfCurrentMonth method
Implementation
static DateTime getLastDayOfCurrentMonth() {
return getFirstDayOfNextMonth().subtract(Duration(days: 1));
}
static DateTime getLastDayOfCurrentMonth() {
return getFirstDayOfNextMonth().subtract(Duration(days: 1));
}