nextWeekday function

  1. @deprecated
DateTime nextWeekday(
  1. DateTime from,
  2. int weekday
)

Deprecated, use nextDayOfTheWeek instead of nextWeekday.

Implementation

@deprecated
DateTime nextWeekday(DateTime from, int weekday) {
  return nextDayOfTheWeek(from, weekday);
}