SessionLogEntry constructor

SessionLogEntry({
  1. required DateTime timestamp,
  2. required String message,
  3. int? step,
  4. Map<String, dynamic> details = const {},
})

Implementation

SessionLogEntry({
  required this.timestamp,
  required this.message,
  this.step,
  this.details = const {},
});