ClosureNode constructor

ClosureNode({
  1. String? functionName,
  2. String? closureOwner,
  3. String? ownerClass,
  4. String? libraries,
  5. int? funLine,
  6. int? funColumn,
})

Implementation

ClosureNode({
  this.functionName,
  this.closureOwner,
  this.ownerClass,
  this.libraries,
  this.funLine,
  this.funColumn,
});