subscribeToNotifications method

Stream<void> subscribeToNotifications(
  1. CharacteristicInstance characteristic
)

Starts subscribing to notifications for a specified characteristic.

This stream only returns the result of the operation. Value updates should be propagated to charValueUpdateStream.

Implementation

Stream<void> subscribeToNotifications(
  CharacteristicInstance characteristic,
) {
  throw UnimplementedError(
      'subscribeToNotifications has not been implemented.');
}