ReflectedFunction constructor

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

Implementation

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