@override String? validate(String? value) { if (value == null || value.length < min) { return 'Minimum $min characters required'; } return null; }