isUpperCase property
bool
get
isUpperCase
Whether every character in string is in it's uppercase.
Implementation
bool get isUpperCase => toUpperCase() == this;
Whether every character in string is in it's uppercase.
bool get isUpperCase => toUpperCase() == this;