operator - method

Map<K, V> operator -(
  1. Iterable<K> keys
)

Returns a Map containing all entries of the original Map except those entries the keys of which are contained in the given keys collection.

Implementation

Map<K, V> operator -(Iterable<K> keys) =>
    whereNot((entry) => keys.contains(entry.key));