diffValues method

Map diffValues(
  1. Map map
)

Returns all entries of this map according to values.

which is not in second map.

Example:

map.diffValues(map2)

Implementation

Map<dynamic, dynamic> diffValues(Map<dynamic, dynamic> map) =>
    FxMap.diffValues(this, map);