From 0ed264f152d7208c06017622244b251135c80922 Mon Sep 17 00:00:00 2001 From: otsmr Date: Wed, 17 Dec 2025 02:05:12 +0100 Subject: [PATCH] fixing 32-bit integer --- lib/src/services/notifications/background.notifications.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/src/services/notifications/background.notifications.dart b/lib/src/services/notifications/background.notifications.dart index 13c55cf..4c652d2 100644 --- a/lib/src/services/notifications/background.notifications.dart +++ b/lib/src/services/notifications/background.notifications.dart @@ -175,8 +175,7 @@ Future showLocalPushNotification( await flutterLocalNotificationsPlugin.show( pushUser.userId.toInt() % - // ignore: avoid_js_rounded_ints - 2373257871630019505, // Invalid argument (id): must fit within the size of a 32-bit integer + 2147483647, // Invalid argument (id): must fit within the size of a 32-bit integer title, body, notificationDetails,