Flash0509

Results 7 comments of Flash0509

Hi Rest00rer, just so you aren't surprised that I'm now describing my error situation here. Gautier closed my issue #122 and linked it to yours as it deals with the...

After executing the command subscription ??= Alarm.ringStream.stream.listen((event) => checkNextCompartmentTime2()); Subscription has the content "Instance of '_ControllerSubscription'". Thanks to your ingenious way of working with "null-aware assignment operator" (??=)", the stream...

I share Rest00rer's suspicion, with the possibility of the error being due to another plugin. For me, error #79 occurs again in a similar form, but only with the release...

Hi Gautier, any new idea or comments related to my last posts?

Since version 3.0.11 the bug with R8 is fixed, even so the alarm is recognized at time. Alarm.ringStream issue still exists.

If I don't close the stream but just continue using it as long as the app is running, everything works again in my case. In my opinion, the error has...

Could this perhaps help you? ``` if (!Alarm.ringStream.hasListener) { print("Alarm STREAMING"); Alarm.ringStream.stream.listen((_) => print('ring')); } else {print("STREAM is already active");} ```