isLastDayOfMonth method
Whether or not the given date is the last day of a month
Implementation
static bool isLastDayOfMonth(DateTime day) =>
isSameDay(lastDayOfMonth(day), day);
Whether or not the given date is the last day of a month
static bool isLastDayOfMonth(DateTime day) =>
isSameDay(lastDayOfMonth(day), day);