Omar Jennane
Omar Jennane
Hello, I want the extension to group the different class members, constructors... without sorting them alphabetically. It would instead preserve their initial order. Is this possible ?
While the code itself is documented, I couldn't spot any documentation for `VAnchor` on the Readme nor on the website. It's such a cool feature, so I believe it deserves...
Hello, Is there any support for [BulkWriter](https://googleapis.dev/nodejs/firestore/latest/BulkWriter.html) ? Thanks.
The feature introduced in #740 is great. However, sometimes the common type might not be accessible in the freezed file, which causes errors. For example : ```dart // In a...
# Background When it comes to implementing generics, we should consider two main issues : **param transformations** and **type constraints**. In general, a "param transformation" is a change in the...
Right now, all validation methods are synchronous, and there is no way to make them async. ```dart @Modddel( // ... ) class Age extends SingleValueObject with _$Age { Age._(); factory...
Freezed supports directly creating a union-case and preserving its type, for example : ```dart @freezed class MapLayer with _$MapLayer { const factory MapLayer.raster(int someParam) = Raster; const factory MapLayer.vector(int someParam)...