KaiselEntrySnapshot constructor

const KaiselEntrySnapshot({
  1. required int id,
  2. required String type,
  3. required List<String> props,
  4. required String label,
  5. bool absorbed = false,
})

Create an entry snapshot.

Implementation

const KaiselEntrySnapshot({
  required this.id,
  required this.type,
  required this.props,
  required this.label,
  this.absorbed = false,
});