localNotification function

LocalNotification localNotification(
  1. String title,
  2. String body
)

Creates a new LocalNotification with the given title and body.

This is a convenience function for quickly creating notifications.

Example:

await localNotification('Hello', 'World').send();

Implementation

LocalNotification localNotification(String title, String body) =>
    LocalNotification(title: title, body: body);