isLowerCase static method

bool isLowerCase(
  1. dynamic v
)

returns true if v is all lower case characters

Implementation

static bool isLowerCase(dynamic v) {
  if (v is String && v == v.toLowerCase()) {
    return true;
  } else {
    return false;
  }
}