hasLowercase static method

bool hasLowercase(
  1. String input
)

Returns whether the input contains a lowercase letter.

Implementation

static bool hasLowercase(String input) => RegExp(r'[a-z]').hasMatch(input);