frames property
List<SentryStackFrame>
get
frames
Required. A non-empty immutable list of stack frames (see below). The list is ordered from caller to callee, or oldest to youngest. The last frame is the one creating the exception.
Implementation
List<SentryStackFrame> get frames => List.unmodifiable(_frames ?? const []);