FuncRef constructor
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,
      );