ScriptStackFrame constructor

ScriptStackFrame({
  1. int? endColumn,
  2. int? endLine,
  3. String? procedureId,
  4. int? startColumn,
  5. int? startLine,
  6. String? text,
})

Implementation

ScriptStackFrame({
  this.endColumn,
  this.endLine,
  this.procedureId,
  this.startColumn,
  this.startLine,
  this.text,
});