isSameOrBeforeDate function
Check the date before/same of last date
Implementation
bool isSameOrBeforeDate(dynamic lastDate, dynamic date) {
return isSameDate(lastDate, date) || lastDate.isAfter(date) == true;
}
Check the date before/same of last date
bool isSameOrBeforeDate(dynamic lastDate, dynamic date) {
return isSameDate(lastDate, date) || lastDate.isAfter(date) == true;
}