ali80
ali80
I have the same high CPU usage issue, narrowed it down to listening on `SerialPortReader.stream` ```dart final reader = SerialPortReader(_sp); _sub = reader.stream.listen((data) { /* final List values = [];...
take a look at its logs, mine had network error and got stuck in renewing the certificates
> I face to same issue, and I found a workaround. `RRuleSet` has immutable `RRule`. So, we have to reinstantiate RRuleSet with each properties. > > ```js > const baseRRuleSet...
In AsyncCallbackJsonWebHandler, there are two main limits to be aware of: 1. HTTP Content Length: This defines the maximum size of the HTTP request content that the server will accept....
> > > same here! > i go to a page like product counter page, firstly i enter to this page counter is 0 and GetXController print some thing that...
@xEyad take a look at BindingsBuilder, very easy to use ```dart Get.to(MyPage(), binding: BindingsBuilder(() { Get.put(GController()); }), ); ```