Jaroslaw Butajlo

Results 3 comments of Jaroslaw Butajlo

@frankpepermans Fixed in #441 PR :)

Also the tool should detect if some field may be nullable (eg. If some field has null value in provided json).

I came up with idea to use `AsyncNotifier` for refreshable combined `FutureProvider`s. I extended `AsyncNotifier` with async `refresh` method: ```dart abstract class RefreshableAsyncNotifier extends AsyncNotifier { RefreshableAsyncNotifier(); Future refresh(); }...