dart_functional_data
dart_functional_data copied to clipboard
Generics are ignored
For a class like:
class Holder<T>{
final T t;
Holder(this.t);
}
The generated Lenses remove the type parameter. It would be nice to have a lens of type Lens<Holder<T>,T>
but instead we get Lens<Holder,T>
which does not compile.