difference method

Map<TKey, TValue> difference(
  1. Map<TKey, TValue> other
)

Implementation

Map<TKey, TValue> difference(Map<TKey, TValue> other) {
  return _mapDifference(this, other).cast();
}