registerForNotification method

Future<void> registerForNotification(
  1. String notificationType
)

Registers for notifications of the specified notificationType.

Available notification types are defined in DataWedgeNotificationType:

Implementation

Future<void> registerForNotification(String notificationType) {
  return _platform.registerForNotification(notificationType);
}