isLastSaturdayThisMonth property

bool isLastSaturdayThisMonth
  • return true the last saturday of the month

Implementation

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