Skip to content

Commit

Permalink
fix: VoidCallback to void Function()
Browse files Browse the repository at this point in the history
  • Loading branch information
0maru committed Jul 30, 2023
1 parent 0d7a3db commit 14a70ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/auth_browser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class AuthBrowser {
static const _channel = MethodChannel(methodName);
late MethodChannel _methodCallHandlerChannel;
bool _isOpen = false;
VoidCallback onClose;
void Function() onClose;

Future<void> methodCallHandler(MethodCall call) async {
switch (call.method) {
Expand Down

0 comments on commit 14a70ae

Please sign in to comment.