isLowerCase function

bool isLowerCase(
  1. String str
)

check if the string str is lowercase

Implementation

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