FuncRef constructor

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

Implementation

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