isNull method
Checks if the object is null
Implementation
AbstractRuleBuilder isNull({String? message}) {
return must((dynamic dyn) => dyn == null, message ?? "Value must be null", code: "notNull");
}
Checks if the object is null
AbstractRuleBuilder isNull({String? message}) {
return must((dynamic dyn) => dyn == null, message ?? "Value must be null", code: "notNull");
}