ProgramInfo.withFrameOffset constructor

ProgramInfo.withFrameOffset(
  1. int offset
)

Implementation

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