isNullOrNullable method
Implementation
ContractValidations isNullOrNullable(
dynamic value, String property, String message) {
if (value == null) {
addNotifications(
ValidationNotification(property: property, message: message));
}
return this;
}