Func constructor

Func({
  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. InstanceRef? signature,
  10. String? id,
  11. SourceLocation? location,
  12. CodeRef? code,
})

Implementation

Func({
  this.name,
  this.owner,
  this.isStatic,
  this.isConst,
  this.implicit,
  this.isAbstract,
  this.isGetter,
  this.isSetter,
  this.signature,
  super.id,
  this.location,
  this.code,
});