SunnyObservableList<V>.of constructor

SunnyObservableList<V>.of(
  1. Iterable<V> map, {
  2. ListDiffAlgorithm? diffAlgorithm,
  3. DiffEquality diffEquality = const DiffEquality(),
  4. String? debugLabel,
})

Implementation

SunnyObservableList.of(Iterable<V> map,
    {this.diffAlgorithm,
    this.diffEquality = const DiffEquality(),
    String? debugLabel})
    : debugLabel = debugLabel ?? "List<$V>",
      super.of(map);