String? call(String? text) { if (text == null) return message; String s = trim ? text.trim() : text; if (s.isEmpty) return message; return null; }