isLowerCase method
Checkes if whole string is lowercase.
Implementation
bool isLowerCase() => toLowerCase() == this && toUpperCase() != this;
Checkes if whole string is lowercase.
bool isLowerCase() => toLowerCase() == this && toUpperCase() != this;