LogDto constructor

const LogDto({
  1. required String id,
  2. required LogLevelDto level,
  3. required int tsMicros,
  4. required String message,
  5. String? orchestrationId,
  6. String? systemId,
  7. List<String> entityRefs = const [],
  8. String? stack,
})

Implementation

const LogDto({
  required this.id,
  required this.level,
  required this.tsMicros,
  required this.message,
  this.orchestrationId,
  this.systemId,
  this.entityRefs = const [],
  this.stack,
});