DebugConsoleEntry constructor

DebugConsoleEntry({
  1. required String message,
  2. String level = 'info',
  3. DateTime? timestamp,
})

Implementation

DebugConsoleEntry({
  required this.message,
  this.level = 'info',
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();