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 70df144 commit 484ea44Copy full SHA for 484ea44
lib/src/widgets/subscription.dart
@@ -8,9 +8,9 @@ import '../websocket/messages.dart';
8
typedef OnSubscriptionCompleted = void Function();
9
10
typedef SubscriptionBuilder = Widget Function({
11
- final bool loading,
12
- final dynamic payload,
13
- final dynamic error,
+ bool loading,
+ dynamic payload,
+ dynamic error,
14
});
15
16
class Subscription extends StatefulWidget {
@@ -101,4 +101,4 @@ class _SubscriptionState extends State<Subscription> {
101
payload: _data,
102
);
103
}
104
-}
+}
0 commit comments