Returns true if a value at key exists and that value is non-null.
key
@override bool existsNonNull(K key) => exists(key) && this[key] != null;