BlocStateEntry constructor
BlocStateEntry(
- String blocType,
- dynamic currentState, [
- dynamic previousState
Creates a transition record, timestamped now.
Implementation
BlocStateEntry(this.blocType, this.currentState, [this.previousState])
: timestamp = DateTime.now();