valueList method

IList<V> valueList({
  1. ConfigList? config,
})

Returns an IList of the all values in all sets.

Optionally, you may provide a config for the list.

The list will be sorted if the map's sortValues configuration is true, or if you explicitly provide a compare method.

Implementation

IList<V> valueList({ConfigList? config}) =>
    IList.withConfig(values, config ?? IList.defaultConfig);