Instructs BoolMust to make sure the given value is not null.
void exist([String? errorMessage]) { _validators.add((value) { if (value == null) return errorMessage ?? 'The boolean is null.'; return ''; }); }