localNotification function
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);