isLastDayOfMonth method
Checks if this DateTime is the last day of the month.
Implementation
bool isLastDayOfMonth() {
final daysInMonth = getDaysInMonth();
return day == daysInMonth;
}
Checks if this DateTime is the last day of the month.
bool isLastDayOfMonth() {
final daysInMonth = getDaysInMonth();
return day == daysInMonth;
}