removeActiveList<V> static method

ActiveStateChanged removeActiveList<V>(
  1. V removedValue, {
  2. String? typeName,
})

removeActiveList Method that describes ActiveStateChanged of type ActiveList when a values is removed from a list

Implementation

static ActiveStateChanged removeActiveList<V>(V removedValue,
        {String? typeName}) =>
    ActiveStateChanged(null, removedValue,
        typeName: typeName, info: 'Value removed : $removedValue');