getLastNotificationId static method

Future<String> getLastNotificationId()

Implementation

static Future<String> getLastNotificationId() async {
  final prefs = await SharedPreferences.getInstance();
  return prefs.getString(_lastNotificationIdKey) ?? '';
}