whereValuesNotNull method

Iterable<MapEntry<K, V>> whereValuesNotNull()

Implementation

Iterable<MapEntry<K, V>> whereValuesNotNull() => this.where((entry) => entry.value != null);