findLastDateOfTheWeek method
Implementation
DateTime? findLastDateOfTheWeek() {
return this?.add(Duration(days: DateTime.daysPerWeek - (this?.weekday)!));
}
DateTime? findLastDateOfTheWeek() {
return this?.add(Duration(days: DateTime.daysPerWeek - (this?.weekday)!));
}