HistoryState<T> constructor

HistoryState<T>(
  1. String? id, {
  2. required Transition<T> transition,
  3. HistoryDepth type = HistoryDepth.deep,
  4. String? description,
})

Implementation

HistoryState(this.id,
    {required this.transition,
    this.type = HistoryDepth.deep,
    this.description});