stopBackgroundService method
Stop background service
Implementation
@override
Future<void> stopBackgroundService() async {
try {
await _methodChannel.invokeMethod('stopBackgroundService');
} catch (e) {
throw BluetoothException('Failed to stop background service: $e');
}
}