Skip to content

Commit 484ea44

Browse files
committed
fixes function_typed_parameter_var
1 parent 70df144 commit 484ea44

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/src/widgets/subscription.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import '../websocket/messages.dart';
88
typedef OnSubscriptionCompleted = void Function();
99

1010
typedef SubscriptionBuilder = Widget Function({
11-
final bool loading,
12-
final dynamic payload,
13-
final dynamic error,
11+
bool loading,
12+
dynamic payload,
13+
dynamic error,
1414
});
1515

1616
class Subscription extends StatefulWidget {
@@ -101,4 +101,4 @@ class _SubscriptionState extends State<Subscription> {
101101
payload: _data,
102102
);
103103
}
104-
}
104+
}

0 commit comments

Comments
 (0)