KaiselFlowSnapshot constructor

const KaiselFlowSnapshot({
  1. required int depth,
  2. required String type,
  3. String? resultType,
  4. required KaiselStackSnapshot stack,
})

Create a flow snapshot.

Implementation

const KaiselFlowSnapshot({
  required this.depth,
  required this.type,
  this.resultType,
  required this.stack,
});