static Validator<T> custom<T>(bool Function(T) test, [String? message]) { return (value) => !test(value) ? (message ?? 'Invalid value') : null; }