Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kroikie committed Aug 27, 2019
1 parent 2f8bcbb commit 266ef40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/firebase_messaging/lib/firebase_messaging.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ class FirebaseMessaging {
backgroundChannel.setMethodCallHandler((MethodCall call) async {
if (call.method == 'handleBackgroundMessage') {
final CallbackHandle handle =
CallbackHandle.fromRawHandle(call.arguments['handle']);
CallbackHandle.fromRawHandle(call.arguments['handle']);
final Function handlerFunction =
PluginUtilities.getCallbackFromHandle(handle);
PluginUtilities.getCallbackFromHandle(handle);
try {
await handlerFunction(
Map<String, dynamic>.from(call.arguments['message']));
Expand Down

0 comments on commit 266ef40

Please sign in to comment.