toEntryISet method

ISet<MapEntry<K, V>> toEntryISet({
  1. ConfigSet? config,
})

Returns an ISet of the map entries. Optionally, you may provide a config for the set.

Implementation

ISet<MapEntry<K, V>> toEntryISet({
  ConfigSet? config,
}) =>
    ISet.withConfig(entries, config ?? ISet.defaultConfig);