createNotification 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
@override
Future<int> createNotification({
  int? id,
  required String title,
  String? body,
}) async =>
    0;