isBefore method
Implementation
ContractValidations isBefore(
DateTime startDate, DateTime endDate, String property, String message) {
if (!startDate.isBefore(endDate)) {
addNotifications(
ValidationNotification(property: property, message: message));
}
return this;
}