DwarfStackTraceDecoder constructor

DwarfStackTraceDecoder(
  1. Dwarf _dwarf, {
  2. Map<int, Dwarf>? dwarfByUnitId,
  3. Iterable<Dwarf>? unitDwarfs,
  4. bool includeInternalFrames = false,
})

Implementation

DwarfStackTraceDecoder(
  this._dwarf, {
  Map<int, Dwarf>? dwarfByUnitId,
  Iterable<Dwarf>? unitDwarfs,
  bool includeInternalFrames = false,
})  : _dwarfByUnitId = dwarfByUnitId,
      _unitDwarfs = unitDwarfs,
      _includeInternalFrames = includeInternalFrames;