observeList method

SunnyObservableList<X> observeList([
  1. String? debugLabel,
  2. DiffEquality diffEquality = const DiffEquality()
])

Implementation

SunnyObservableList<X> observeList(
    [String? debugLabel, DiffEquality diffEquality = const DiffEquality()]) {
  return SunnyObservableList.ofVStream(this,
      diffEquality: diffEquality, debugLabel: debugLabel);
}