AppLogEntry constructor

const AppLogEntry({
  1. required DateTime timestamp,
  2. required String message,
  3. String source = 'app',
})

Implementation

const AppLogEntry({
  required this.timestamp,
  required this.message,
  this.source = 'app',
});