equalItemsToMap method

bool equalItemsToMap(
  1. Map other
)

Will return true only if the two maps have the same number of entries, and if the entries of the two maps are pairwise equal on both key and value.

Implementation

bool equalItemsToMap(Map other) => const MapEquality<dynamic, dynamic>()
    .equals(UnmodifiableMapFromIMap<dynamic, dynamic>(this), other);