ReflectedFunction constructor

const ReflectedFunction(
  1. String name,
  2. List<ReflectedTypeParameter> typeParameters,
  3. List<ReflectedInstance?>? annotations,
  4. ReflectedType? returnType,
  5. List<ReflectedParameter> parameters,
  6. bool isGetter,
  7. bool isSetter,
)

Implementation

const ReflectedFunction(
    this.name, this.typeParameters, this.annotations, this.returnType, this.parameters, this.isGetter, this.isSetter);