SyncLogDebug constructor

const SyncLogDebug({
  1. required String id,
  2. required DateTime timestamp,
  3. required SyncLogDebugLevel level,
  4. required String message,
  5. String? category,
  6. String? tag,
  7. Map<String, dynamic>? metadata,
  8. String? stackTrace,
  9. String? userId,
  10. String? sessionId,
})

Implementation

const SyncLogDebug({
  required this.id,
  required this.timestamp,
  required this.level,
  required this.message,
  this.category,
  this.tag,
  this.metadata,
  this.stackTrace,
  this.userId,
  this.sessionId,
});