previous method
Returns the previous instance of the given date considering this Every
base process.
If the date is a DateTime that matches the Every pattern, a new
DateTime will be generated.
Implementation
@override
DateTime previous(DateTime date) {
return _calculate(
date,
dateGeneratorFunction: _workdays.previous,
isNext: false,
);
}