isLowerCase property

bool get isLowerCase

Returns true if the whole string is lower case.

Implementation

bool get isLowerCase => isNotEmpty && this == toLowerCase();