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