Skip to content

Commit 8bea175

Browse files
committed
return
1 parent 922680b commit 8bea175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/value_listenable_to_value_stream.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ extension ValueListenableToValueStream<T> on ValueListenable<T> {
2323
///
2424
/// If [replayValue] is true, the returned [ValueStream] will replay latest value when listening to it.
2525
/// Otherwise, it does not.
26-
ValueStream<T> toValueStream({bool replayValue = false}) =>
26+
ValueListenableStream<T> toValueStream({bool replayValue = false}) =>
2727
ValueListenableStream<T>(this, replayValue);
2828
}
2929

0 commit comments

Comments
 (0)