@@ -58,39 +58,39 @@ class ValueListenableStream<T> extends Stream<T> implements ValueStream<T> {
58
58
);
59
59
}
60
60
61
- /// Always return `false` .
61
+ /// Always returns `false` .
62
62
@override
63
63
bool get isBroadcast => false ;
64
64
65
65
/// Always throw [ValueStreamError.hasNoError] .
66
66
@override
67
67
Never get error => throw ValueStreamError .hasNoError ();
68
68
69
- /// Always return `null` .
69
+ /// Always returns `null` .
70
70
@override
71
71
Null get errorOrNull => null ;
72
72
73
- /// Always return `false` .
73
+ /// Always returns `false` .
74
74
@override
75
75
bool get hasError => false ;
76
76
77
- /// Always return `null` .
77
+ /// Always returns `null` .
78
78
@override
79
79
Null get stackTrace => null ;
80
80
81
- /// Always return `true` .
81
+ /// Always returns `true` .
82
82
@override
83
83
bool get hasValue => true ;
84
84
85
- /// Always return the latest value.
85
+ /// Always returns the latest value.
86
86
@override
87
87
T get value => _valueListenable.value;
88
88
89
- /// Always return the latest value.
89
+ /// Always returns the latest value.
90
90
@override
91
91
T get valueOrNull => _valueListenable.value;
92
92
93
- /// Always return a [DataNotification] with the latest value.
93
+ /// Always returns a [DataNotification] with the latest value.
94
94
@override
95
95
DataNotification <T > get lastEventOrNull =>
96
96
DataNotification <T >(_valueListenable.value);
0 commit comments