getNotification method

Future<Notification?> getNotification({
  1. required String notificationId,
})

Get notification by ID

Implementation

Future<Notification?> getNotification({
  required String notificationId,
}) async {
  return await _platform.getNotification(notificationId: notificationId);
}