createNotification abstract method
Create an immediate notification with id, title, and body.
If the id is not specified, a random id will be generated.
Returns the id of the notification created.
Implementation
Future<int> createNotification({
int? id,
required String title,
String? body,
});