startOfLastLocalWeek method

DateTime startOfLastLocalWeek([
  1. int? weekStart
])

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

Implementation

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