This commit is contained in:
J. A. Messias 2024-11-27 15:53:06 -03:00
parent 5cda31ea0d
commit d99cfc1873
1 changed files with 1 additions and 4 deletions

View File

@ -42,10 +42,7 @@ Future<void> _foregroundHandlerMessage(RemoteMessage message) async {
}
if (!Platform.isIOS) {
NotificationService.show(
title: message.notification!.title!,
body: message.notification!.body!,
payload: Map<String, String>.from(message.data));
NotificationService.show(title: message.notification!.title!, body: message.notification!.body!, payload: Map<String, String>.from(message.data));
}
}