dart_functional_data icon indicating copy to clipboard operation
dart_functional_data copied to clipboard

Simple and non-intrusive code generator for lenses and boilerplate of data types

Results 5 dart_functional_data issues
Sort by recently updated
recently updated
newest added

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...