isLowerCase property
Whether this is comprised of only uppercase characters.
'hello'.isLowerCase; // true
'Hello'.isLowerCase; // false
Implementation
@useResult bool get isLowerCase => this == toLowerCase();
Whether this is comprised of only uppercase characters.
'hello'.isLowerCase; // true
'Hello'.isLowerCase; // false
@useResult bool get isLowerCase => this == toLowerCase();