KaiselShellSnapshot constructor

const KaiselShellSnapshot({
  1. required String type,
  2. required int activeBranch,
  3. required int branchCount,
  4. required List<KaiselBranchSnapshot> branches,
})

Create a shell snapshot.

Implementation

const KaiselShellSnapshot({
  required this.type,
  required this.activeBranch,
  required this.branchCount,
  required this.branches,
});