AppStateEntry constructor

AppStateEntry({
  1. required String source,
  2. required dynamic value,
  3. required DateTime timestamp,
  4. dynamic previousState,
})

Creates a state entry.

Implementation

AppStateEntry({
  required this.source,
  required this.value,
  required this.timestamp,
  this.previousState,
});