hasUpperChar method

bool hasUpperChar(
  1. String str
)

Implementation

bool hasUpperChar(String str) => str.contains(RegExp(_hasUpperCharRegex));