FuncRef constructor

FuncRef({
  1. String? name,
  2. dynamic owner,
  3. bool? isStatic,
  4. bool? isConst,
  5. bool? implicit,
  6. bool? isAbstract,
  7. required String id,
  8. SourceLocation? location,
})

Implementation

FuncRef({
  this.name,
  this.owner,
  this.isStatic,
  this.isConst,
  this.implicit,
  this.isAbstract,
  required String id,
  this.location,
}) : super(
        id: id,
      );