notContainsKey method
FieldValidator<T, Map<TKey, TValue> >
notContainsKey(
- TKey key, [
- MessageCallBack<
Map< ? messageTKey, TValue> >
check if the value not contains key
Implementation
FieldValidator<T, Map<TKey, TValue>> notContainsKey(TKey key,
[MessageCallBack<Map<TKey, TValue>>? message]) {
return notContainsKeyFn(() => key, message);
}