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