Commit 809f50c
authored
Allow await on helper start call (#365)
Because the return value of start is void rather than Future<void> it is impossible to await it's completion because it has been flagged as async.
Users choosing to allow the call to be completed asynchronously can simply ignore the Future<void> but those wanting to act after registration is complete cannot do so without this change.1 parent 3d0c551 commit 809f50c
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
0 commit comments