FunctionMirror constructor

const FunctionMirror({
  1. required String name,
  2. FunctionCall? $call,
  3. dynamic returnType,
  4. List<DeclarationMirror>? positionalParameters,
  5. Map<String, DeclarationMirror>? namedParameters,
  6. List<Annotation>? annotations,
})

Implementation

const FunctionMirror({
  required String name,
  this.$call,
  this.returnType,
  this.positionalParameters,
  this.namedParameters,
  List<Annotation>? annotations})
    : super(name, annotations);