static bool minLength(String value, int minLength) { if (value.length < minLength) { return true; } else { return false; } }