ReflectedClass constructor

const ReflectedClass(
  1. String name,
  2. List<ReflectedTypeParameter>? typeParameters,
  3. List<ReflectedInstance?>? annotations,
  4. List<ReflectedFunction?>? constructors,
  5. List<ReflectedDeclaration?>? declarations,
  6. Type reflectedType,
)

Implementation

const ReflectedClass(String name, List<ReflectedTypeParameter>? typeParameters, this.annotations, this.constructors,
    this.declarations, Type reflectedType)
    : super(name, typeParameters, reflectedType);