Jonny Borges
Committed by GitHub

Merge pull request #747 from AleFachini/patch-1

GetUtils  has Uppercase/Capital letter?
... ... @@ -94,6 +94,9 @@ class GetUtils {
/// Checks if string consist only Alphabet. (No Whitespace)
static bool isAlphabetOnly(String s) => hasMatch(s, r'^[a-zA-Z]+$');
/// Checks if string contains at least one Capital Letter
static bool hasCapitalletter(String s) => hasMatch(s, r'[A-Z]');
/// Checks if string is boolean.
static bool isBool(String value) {
... ...