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