observe method

SunnyObservableMap<K, V> observe([
  1. String? debugLabel,
  2. DiffEquality? diffEquality
])

Implementation

SunnyObservableMap<K, V> observe(
    [String? debugLabel, DiffEquality? diffEquality]) {
  return SunnyObservableMap.ofVStream(
    this,
    debugLabel: debugLabel,
    diffEquality: diffEquality,
  );
}