isLastThursdayThisMonth property

bool isLastThursdayThisMonth
  • return true the last thursday of the month

Implementation

bool get isLastThursdayThisMonth =>
    isThursday &&
    month + 1 == DateTime(year, month, day + DateTime.daysPerWeek).month;