isLowerCase function

bool isLowerCase(
  1. String str
)

Returns true if str is entirely lowercase (or has no cased characters).

Implementation

bool isLowerCase(String str) => str == str.toLowerCase();