hasLowerChar method

bool hasLowerChar(
  1. String str
)

Implementation

bool hasLowerChar(String str) => str.contains(RegExp(_hasLowerCharRegex));