isLowerCase property
Checks whether the String
is in lowercase.
Implementation
bool get isLowerCase {
if (isBlank) {
return false;
}
return this == toLowerCase();
}
Checks whether the String
is in lowercase.
bool get isLowerCase {
if (isBlank) {
return false;
}
return this == toLowerCase();
}