freezed icon indicating copy to clipboard operation
freezed copied to clipboard

Support Freezed generated classes as input of other Freezed classes within the same file

Open rrousselGit opened this issue 1 year ago • 0 comments

@freezed
class A with _$A {
  factory A() = AImpl;
}

@freezed
class B with _$B {
  factory B(AImpl a) = _B;
}

This is especially useful for unions.

Would get pretty hard to support cross-file though

rrousselGit avatar May 13 '23 10:05 rrousselGit