toValueISet method

ISet<V> toValueISet({
  1. ConfigSet? config,
})

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

Implementation

ISet<V> toValueISet({
  ConfigSet? config,
}) {
  return ISet.withConfig(values, config ?? ISet.defaultConfig);
}