Skip to content

Commit 20e1f33

Browse files
committed
format store
1 parent 03bdec4 commit 20e1f33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/src/store.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ class Store<State> {
190190
/// Under the hood, it will use the `==` method from your State class to
191191
/// determine whether or not the two States are equal.
192192
bool distinct = false,
193-
})
194-
: _changeController = StreamController.broadcast(sync: syncStream) {
193+
}) : _changeController = StreamController.broadcast(sync: syncStream) {
195194
_state = initialState;
196195
_dispatchers = _createDispatchers(
197196
middleware,

0 commit comments

Comments
 (0)