getLastDayOfNextMonth method
Implementation
static DateTime getLastDayOfNextMonth() {
var nextMonth = getFirstDayOfNextMonth()
.add(Duration(days: 31));
return DateTime(nextMonth.year, nextMonth.month, 1)
.subtract(Duration(days: 1));
}