We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1af6ba6 commit 37d4156Copy full SHA for 37d4156
packages/firebase_messaging/lib/firebase_messaging.dart
@@ -48,9 +48,9 @@ class FirebaseMessaging {
48
backgroundChannel.setMethodCallHandler((MethodCall call) async {
49
if (call.method == 'handleBackgroundMessage') {
50
final CallbackHandle handle =
51
- CallbackHandle.fromRawHandle(call.arguments['handle']);
+ CallbackHandle.fromRawHandle(call.arguments['handle']);
52
final Function handlerFunction =
53
- PluginUtilities.getCallbackFromHandle(handle);
+ PluginUtilities.getCallbackFromHandle(handle);
54
try {
55
await handlerFunction(
56
Map<String, dynamic>.from(call.arguments['message']));
0 commit comments