setNotificationContentOnAppKill static method
Saves on app kill notification custom title
and body
.
Implementation
static Future<void> setNotificationContentOnAppKill(
String title,
String body,
) =>
Future.wait([
prefs.setString(notificationOnAppKillTitle, title),
prefs.setString(notificationOnAppKillBody, body),
]);