KaiselStackSnapshot constructor

const KaiselStackSnapshot({
  1. required int depth,
  2. required bool canPop,
  3. required List<KaiselEntrySnapshot> entries,
})

Create a stack snapshot.

Implementation

const KaiselStackSnapshot({
  required this.depth,
  required this.canPop,
  required this.entries,
});