isLower static method

bool isLower(
  1. String string
)

check string is in lower case or not

Implementation

static bool isLower(String string) =>
    string == string.toLowerCase() ? true : false;