SunnyObservableList<V> constructor

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

Implementation

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