clearActiveList<V> static method

ActiveStateChanged<Iterable<V>> clearActiveList<V>(
  1. Iterable<V> iterable, {
  2. String? typeName,
})

clearActiveList Method that describes ActiveStateChanged of type ActiveList when you want to clear every value in a list

Implementation

static ActiveStateChanged<Iterable<V>> clearActiveList<V>(Iterable<V> iterable,
        {String? typeName}) =>
    ActiveStateChanged(<V>[], iterable,
        typeName: typeName, info: 'List cleared');