ProgramInfo.withFrameOffset constructor
ProgramInfo.withFrameOffset(
- int offset
Implementation
factory ProgramInfo.withFrameOffset(int offset) {
assert(offset >= 1);
return ProgramInfo._(
StackTrace.current,
offset,
);
}