existsNull method

  1. @override
bool existsNull(
  1. K key
)
override

Returns true if a value at key exists and that value is null.

Implementation

@override
bool existsNull(K key) => exists(key) && this[key] == null;