dart_functional_data icon indicating copy to clipboard operation
dart_functional_data copied to clipboard

Generics are ignored

Open laurenskz opened this issue 11 months ago • 0 comments

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.

laurenskz avatar Mar 22 '24 13:03 laurenskz