Remi Rousselet

Results 1727 comments of Remi Rousselet

I don't have the time to investigate this at the moment. Feel free to have a look at it if you're interested

Are you looking for ref.watch? ```dart class ProgressNotifier extends Notifier { @override int build() { ref.watch(batchSizeProvider); return 0; } } ```

Let me guess: Your UI never listens to `progressProvider ` Providers rebuild only if they are in use.

To be fair, it's kind of because there's only a landing page at the moment :P

Hello there! As I read this, a few things come to mind: 1. Could non-abstract redirecting factories define default values too? ```dart factory Example([int a = 0]) = Redirecting; ```...

Fwiw there's a non-zero amount of redirecting factories with default values in the wild. Freezed has a syntax for it ; which was most likely not picked up by the...

You'll need: ```dart ResultData._(): super._(); ```

Right, the class needs to be abstract too.

I don't mind. I proposed `infer` because I think that's the keyword that's going to be used for extracting generics: ```dart class Bloc {} ```