AppStateEntry constructor

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

Implementation

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