isLowerCase method

bool isLowerCase()

Checkes if whole string is lowercase.

Implementation

bool isLowerCase() => toLowerCase() == this && toUpperCase() != this;