startNotify method

Future<void> startNotify()

Starts a notification session from this characteristic if it supports value notifications or indications.

Implementation

Future<void> startNotify() async {
  await _object.callMethod(
      _gattCharacteristicInterfaceName, 'StartNotify', [],
      replySignature: DBusSignature(''));
}