Skip to content

Commit

Permalink
Fix: Missing trailing Comma Error
Browse files Browse the repository at this point in the history
  • Loading branch information
ABausG committed Dec 2, 2023
1 parent b7663c1 commit 18cb7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/home_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class HomeWidget {
static Future<bool?> registerBackgroundCallback(Function(Uri?) callback) {
final args = <dynamic>[
ui.PluginUtilities.getCallbackHandle(callbackDispatcher)?.toRawHandle(),
ui.PluginUtilities.getCallbackHandle(callback)?.toRawHandle()
ui.PluginUtilities.getCallbackHandle(callback)?.toRawHandle(),
];
return _channel.invokeMethod('registerBackgroundCallback', args);
}
Expand Down

0 comments on commit 18cb7c7

Please sign in to comment.