containsLowercase method
Checks if the string contains at least one lowercase letter.
Implementation
bool containsLowercase() {
return contains(RegExp(r'[a-z]'));
}
Checks if the string contains at least one lowercase letter.
bool containsLowercase() {
return contains(RegExp(r'[a-z]'));
}