addedAllToList<V> method Null safety

EmpireStateChanged addedAllToList<V>(
  1. Iterable<V> newValues,
  2. {String? propertyName}
)

A factory method which creates a single EmpireStateChanged object with a description describing all the values that were added to the list

Implementation

static EmpireStateChanged addedAllToList<V>(Iterable<V> newValues,
        {String? propertyName}) =>
    EmpireStateChanged(newValues, null,
        propertyName: propertyName,
        description: 'Added All To List: $newValues');