findFirstDateOfTheWeek method
Implementation
DateTime? findFirstDateOfTheWeek() {
return this?.subtract(Duration(days: (this?.weekday)! - 1));
}
DateTime? findFirstDateOfTheWeek() {
return this?.subtract(Duration(days: (this?.weekday)! - 1));
}