isUpperCase property

  1. @useResult
bool get isUpperCase

Whether this is comprised of only uppercase characters.

'HELLO'.isUpperCase; // true

'Hello'.isUpperCase; // false

Implementation

@useResult bool get isUpperCase => this == toUpperCase();