notEmpty method
Checks if the object a string and is not empty
Implementation
AbstractRuleBuilder notEmpty({String? message}) {
return must((dynamic dyn) => dyn is String && dyn.isNotEmpty, message ?? "String must not be empty", code: "empty");
}