addActiveList<V> static method

ActiveStateChanged addActiveList<V>(
  1. V newValue, {
  2. String? typeName,
})

addActiveList Method that describes ActiveStateChanged of type ActiveList when a new value is added to a list

Implementation

static ActiveStateChanged addActiveList<V>(V newValue, {String? typeName}) =>
    ActiveStateChanged(newValue, null,
        typeName: typeName, info: 'A new value added : $newValue');