withDeepEquals property

IMap<K, V> withDeepEquals

Creates a map with deepEquals (compares all map entries by equality).

Implementation

IMap<K, V> get withDeepEquals =>
    config.isDeepEquals ? this : IMap._unsafe(_m, config: config.copyWith(isDeepEquals: true));