storeLastNotificationId static method

Future<void> storeLastNotificationId(
  1. String id
)

Implementation

static Future<void> storeLastNotificationId(String id) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.setString(_lastNotificationIdKey, id);
}