startNotifications method

Future<void> startNotifications(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. int timeout,
  5. void callback(
    1. String result
    ),
)

Implementation

Future<void> startNotifications(
    String deviceId,
    String service,
    String characteristic,
    int timeout,
    void Function(String result) callback
  ) {
  throw UnimplementedError('startNotifications() has not been implemented.');
}