lowercase static method
Ensures the string is entirely lowercase.
Implementation
static String? Function(String?) lowercase({
String errorMessage = 'Must be lowercase',
}) {
return _build(errorMessage, (v) => v.isLowercase);
}
Ensures the string is entirely lowercase.
static String? Function(String?) lowercase({
String errorMessage = 'Must be lowercase',
}) {
return _build(errorMessage, (v) => v.isLowercase);
}