Beginning Flutter Debugging

Jan 18 2022 Dart 2.14, Flutter 2.5, VS Code 1.62 OR Android Studio

Part 1: Beginning Flutter Debugging

4. Understand the Call Stack

Episode complete

Play next episode

Next
About this episode
See versions
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 3. Inspect Variables Next episode: 5. Debug a Simple Problem

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Pro subscription. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

This video Understand the Call Stack was last updated on Jan 18 2022

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

The call stack is used to show whats happening behind the scene in Flutter when our code hits a breakpoint. It shows a hierachy of active function calls in a stack order. So when a function calls another function, the new function is added to the top of the call stack.