endOfWeek property
DateTime
get
endOfWeek
Returns the end of the week (Sunday).
Example:
DateTime(2024, 1, 15).endOfWeek; // Sunday of that week
Implementation
DateTime get endOfWeek {
final weekday = this.weekday;
return add(Duration(days: 7 - weekday)).endOfDay;
}