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