isLowerCase property

bool isLowerCase

Returns true if the whole string is lower case.

Implementation

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