static Validator custom(bool valid, String message) { return (String? value) { return (!valid) ? message : null; }; }