nonValue property

Map<K, V> get nonValue

Implementation

Map<K, V> get nonValue {
  return Map.of(this)..removeWhere((key, value) => value == null);
}