endOfNextLocalWeek method

DateTime endOfNextLocalWeek([
  1. int? weekStart
])

Assumes this is in local timezone, but will preserve the timezone

Implementation

DateTime endOfNextLocalWeek([int? weekStart]) =>
    endOfLocalWeek(weekStart).add(const Duration(days: 7));