KaiselBranchSnapshot constructor

const KaiselBranchSnapshot({
  1. required int index,
  2. required bool built,
  3. required String routeType,
  4. required KaiselStackSnapshot stack,
})

Create a branch snapshot.

Implementation

const KaiselBranchSnapshot({
  required this.index,
  required this.built,
  required this.routeType,
  required this.stack,
});