stopNotifications method
Implementation
@override
Future<void> stopNotifications() async {
final characteristic = _getCharacteristic();
await backend.setCharacteristicNotifyState(peripheral, characteristic!,
state: false);
await _subscription?.cancel();
}