getCallFrames method
Call stack the virtual machine stopped on.
Implementation
List<WipCallFrame> getCallFrames() => (params!['callFrames'] as List)
.map((frame) => WipCallFrame(frame as Map<String, dynamic>))
.toList();
Call stack the virtual machine stopped on.
List<WipCallFrame> getCallFrames() => (params!['callFrames'] as List)
.map((frame) => WipCallFrame(frame as Map<String, dynamic>))
.toList();