isLowerCase property
bool
get
isLowerCase
Returns true
if the whole string is lower case.
Implementation
bool get isLowerCase => isNotEmpty && this == toLowerCase();
Returns true
if the whole string is lower case.
bool get isLowerCase => isNotEmpty && this == toLowerCase();