lowerCaseCount method
Returns the number of lowercase characters in the string.
Implementation
int lowerCaseCount() {
return replaceAll(RegExp(r'[^a-z]'), '').length;
}
Returns the number of lowercase characters in the string.
int lowerCaseCount() {
return replaceAll(RegExp(r'[^a-z]'), '').length;
}