isUpperCase property

bool get isUpperCase

Whether every character in string is in it's uppercase.

Implementation

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