dart_functional_data
dart_functional_data copied to clipboard
Simple and non-intrusive code generator for lenses and boilerplate of data types
The original class `_ViewModel` is private, but the generated class is `$_ViewModel`, which is not private. It lead to name conflict when export multiple modules that have the same class...
Hi! First off, I love this package. It has solved so many problems for me. My current use case is when a user signs in, I have their configuration for...
For a class like: ``` class Holder{ final T t; Holder(this.t); } ``` The generated Lenses remove the type parameter. It would be nice to have a lens of type...