clragon
clragon
Thank you for your issue. > It is currently not possible to initialize a PagingState type with an empty default value. It is unclear what you mean by that. Right...
You can solve this problem with an [initializer list](https://dart.dev/language/constructors#use-an-initializer-list): ```dart class AppState { AppState({ PagingState? list, }) : list = list ?? PagingState(); final PagingState list; } ```
We would like to wrap the lists passed into `PagingStateBase` in `List.unmodifiable` to prevent common errors where a user might incorrectly modify the list directly. The constructor can only be...
In the upcoming version 6, we are also looking to introduce a lazily computed `items` variable directly on `PagingState` (see #386 and 50f8369) This is not possible, if we also...
Thats correct, `const` lists are immutable. However, lists passed by the user, either through direct construction or via `copyWith` are likely not const and should be protected against modifcation. This...
Thank you for your patience. This feature is now seeing trial phases on the master branch. A Database export and import option might be available in the next release.
Thank you for your issue. The reason these have been omitted is that we dont wish to pollute the namespace of the person importing it. However, I do generally agree...
I dont understand why this would be a good idea. If there is no meaningful difference between upvoting and favoriting, would it not be better to just remove favoriting altogether?...