cIsLowerCase property

bool get cIsLowerCase

Checks if the string is in all lowercase.

Implementation

bool get cIsLowerCase {
  return this == (this).toLowerCase();
}