lastWeekday method

Moment lastWeekday(
  1. int weekday
)

Returns new Moment instance of last nth weekday

If today is the nth day, will return 7 days in the past

Implementation

Moment lastWeekday(int weekday) => forcedSuperType
    .lastWeekday(weekday)
    .toMoment(localization: setLocalization);