isLowerCase property

  1. @useResult
bool get isLowerCase

Whether this is comprised of only uppercase characters.

'hello'.isLowerCase; // true

'Hello'.isLowerCase; // false

Implementation

@useResult bool get isLowerCase => this == toLowerCase();