ClosureInfo constructor

ClosureInfo({
  1. String? closureFunctionName,
  2. String? closureOwner,
  3. String? closureOwnerClass,
  4. String? libraries,
  5. int? funLine,
  6. int? funColumn,
})

Implementation

ClosureInfo({
  this.closureFunctionName,
  this.closureOwner,
  this.closureOwnerClass,
  this.libraries,
  this.funLine,
  this.funColumn,
});