registerForNotification method
Registers for notifications of the specified notificationType.
Available notification types are defined in DataWedgeNotificationType:
- DataWedgeNotificationType.scannerStatus: Scanner state changes
- DataWedgeNotificationType.profileSwitch: Profile change events
- DataWedgeNotificationType.configurationUpdate: Config changes
- DataWedgeNotificationType.workflowStatus: Workflow state changes
Implementation
Future<void> registerForNotification(String notificationType) {
return _platform.registerForNotification(notificationType);
}