hasDifferencesWith method

bool hasDifferencesWith(
  1. Map<K, V> value, {
  2. List<K> keys = const [],
})

Implementation

bool hasDifferencesWith(Map<K, V> value, {List<K> keys = const []}) {
  return Misc.hasMapDifference<K, V>(this, value, keys: keys);
}