removedFromList<V> static method

EmpireStateChanged removedFromList<V>(
  1. V removedValue, {
  2. String? propertyName,
})

A factory method which creates a single EmpireStateChanged object with a description describing what value was removed from the list

Implementation

static EmpireStateChanged removedFromList<V>(V removedValue,
        {String? propertyName}) =>
    EmpireStateChanged(null, removedValue,
        propertyName: propertyName,
        description: 'Removed From List: $removedValue');