addAllActiveList<V> static method

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

addAllActiveList Method that describes ActiveStateChanged of type ActiveList when new values is added to a list

Implementation

static ActiveStateChanged addAllActiveList<V>(Iterable<V> newValues,
        {String? typeName}) =>
    ActiveStateChanged(newValues, null,
        typeName: typeName, info: 'List values added : $newValues');