StackFrame constructor

StackFrame({
  1. String? columnNumber,
  2. TruncatableString? fileName,
  3. TruncatableString? functionName,
  4. String? lineNumber,
  5. Module? loadModule,
  6. TruncatableString? originalFunctionName,
  7. TruncatableString? sourceVersion,
})

Implementation

StackFrame({
  this.columnNumber,
  this.fileName,
  this.functionName,
  this.lineNumber,
  this.loadModule,
  this.originalFunctionName,
  this.sourceVersion,
});