startNotify method

  1. @override
Future<bool?> startNotify({
  1. required String serviceUuid,
  2. required String characteristicUuid,
})
override

startNotify starts listening to notifications from a BLE characteristic. To stop listening, use stopNotify method and to get the notifications, use onNotify stream.

Implementation

@override
Future<bool?> startNotify({
  required String serviceUuid,
  required String characteristicUuid,
}) =>
    throw UnimplementedError('startNotify() has not been implemented.');