setNotifications method

Future<int> setNotifications(
  1. int notifications
)

Sets which events the device reports (see Notifications for flag values).

Implementation

Future<int> setNotifications(int notifications) {
  return _set(CapturePropertyIds.notificationsDevice, CapturePropertyTypes.ulong, notifications);
}