callInfoFrom method

Iterable<CallInfo>? callInfoFrom(
  1. Dwarf dwarf, {
  2. bool includeInternalFrames = false,
})

The call information found for this PCOffset in dwarf.

Returns null if the PCOffset is invalid for the given DWARF information.

If includeInternalFrames is false, then only information corresponding to user or library code is returned.

Implementation

Iterable<CallInfo>? callInfoFrom(Dwarf dwarf,
        {bool includeInternalFrames = false}) =>
    dwarf.callInfoForPCOffset(this,
        includeInternalFrames: includeInternalFrames);