lastDayOfWeek property
The last day of the week.
final tuesday = ZonedDateTime('Asia/Singapore', 2023, 4, 11);
final sunday = tuesday.lastDayOfWeek; // 2023-04-16T00:00+08:00[Asia/Singapore]
Implementation
@useResult ZonedDateTime get lastDayOfWeek => ZonedDateTime._convert(timezone, _native.lastDayOfWeek);