PolymorphicType constructor

PolymorphicType({
  1. required String name,
  2. required Package source,
  3. required List<Type> arguments,
  4. Element? element,
})

Implementation

PolymorphicType({
  required this.name,
  required this.source,
  required this.arguments,
  this.element,
});