startOfNextLocalWeek method

DateTime startOfNextLocalWeek([
  1. int? weekStart
])

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

Implementation

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