lastDayOfWeek property
The last day of the week.
final tuesday = LocalDateTime(2023, 4, 11, 12, 30);
final sunday = tuesday.lastDayOfWeek; // 2023-04-16 00:00
Implementation
@useResult LocalDateTime get lastDayOfWeek => LocalDateTime._(_native.lastDayOfWeek);