Checks if the string has a minimum length.
static bool hasMinLength(String value, int minLength) => value.length >= minLength;