Skip to content

Commit 86f72c2

Browse files
committed
Lint
1 parent e304b6c commit 86f72c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/flutter_riverpod/test/src/core/provider_subscription_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ void main() {
3939
});
4040
}
4141

42-
class DeferredNotifier<T> extends Notifier<T> {
42+
class DeferredNotifier<StateT> extends Notifier<StateT> {
4343
DeferredNotifier(this._build);
4444

45-
final T Function(Ref ref, DeferredNotifier<T> self) _build;
45+
final StateT Function(Ref ref, DeferredNotifier<StateT> self) _build;
4646

4747
@override
48-
T build() {
48+
StateT build() {
4949
return _build(ref, this);
5050
}
5151
}

0 commit comments

Comments
 (0)