compact property
Map<K, V>
get
compact
Implementation
Map<K, V> get compact {
if (this == null) return {};
return filter((_, v) => v != null);
}
Map<K, V> get compact {
if (this == null) return {};
return filter((_, v) => v != null);
}