StackTraceElement constructor

StackTraceElement({
  1. Position? position,
  2. String? routine,
  3. String? step,
})

Implementation

StackTraceElement({
  this.position,
  this.routine,
  this.step,
});