isLowerCase static method
returns true if v is all lower case characters
Implementation
static bool isLowerCase(dynamic v) {
if (v is String && v == v.toLowerCase()) {
return true;
} else {
return false;
}
}
returns true if v is all lower case characters
static bool isLowerCase(dynamic v) {
if (v is String && v == v.toLowerCase()) {
return true;
} else {
return false;
}
}