@@ -58,39 +58,39 @@ class ValueListenableStream<T> extends Stream<T> implements ValueStream<T> {
5858 );
5959 }
6060
61- /// Always return `false` .
61+ /// Always returns `false` .
6262 @override
6363 bool get isBroadcast => false ;
6464
6565 /// Always throw [ValueStreamError.hasNoError] .
6666 @override
6767 Never get error => throw ValueStreamError .hasNoError ();
6868
69- /// Always return `null` .
69+ /// Always returns `null` .
7070 @override
7171 Null get errorOrNull => null ;
7272
73- /// Always return `false` .
73+ /// Always returns `false` .
7474 @override
7575 bool get hasError => false ;
7676
77- /// Always return `null` .
77+ /// Always returns `null` .
7878 @override
7979 Null get stackTrace => null ;
8080
81- /// Always return `true` .
81+ /// Always returns `true` .
8282 @override
8383 bool get hasValue => true ;
8484
85- /// Always return the latest value.
85+ /// Always returns the latest value.
8686 @override
8787 T get value => _valueListenable.value;
8888
89- /// Always return the latest value.
89+ /// Always returns the latest value.
9090 @override
9191 T get valueOrNull => _valueListenable.value;
9292
93- /// Always return a [DataNotification] with the latest value.
93+ /// Always returns a [DataNotification] with the latest value.
9494 @override
9595 DataNotification <T > get lastEventOrNull =>
9696 DataNotification <T >(_valueListenable.value);
0 commit comments