@override String? validate(T? input) { if (input == null) return 'This field is required'; if (input > max) return 'Value must be at most $max'; return null; }