stopNotifications method
Stop listening for notifications.
- May throw InvalidStateError if characteristic is null
See:
Implementation
Future<void> stopNotifications() async {
final promise = _JSUtil.callMethod(_jsObject, "stopNotifications", []);
await _JSUtil.promiseToFuture(promise);
}