We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 922680b commit 8bea175Copy full SHA for 8bea175
lib/src/value_listenable_to_value_stream.dart
@@ -23,7 +23,7 @@ extension ValueListenableToValueStream<T> on ValueListenable<T> {
23
///
24
/// If [replayValue] is true, the returned [ValueStream] will replay latest value when listening to it.
25
/// Otherwise, it does not.
26
- ValueStream<T> toValueStream({bool replayValue = false}) =>
+ ValueListenableStream<T> toValueStream({bool replayValue = false}) =>
27
ValueListenableStream<T>(this, replayValue);
28
}
29
0 commit comments