stopObserving method

Future<void> stopObserving(
  1. ServiceName service
)

Disables event updates for the service.

Implementation

Future<void> stopObserving(ServiceName service) async {
  await _client.send('BackgroundService.stopObserving', {'service': service});
}