LogOptions constructor

const LogOptions({
  1. required LogLevel level,
  2. required String message,
  3. String? stackTrace,
  4. String? metadata,
  5. String? userIdentifier,
  6. String? sessionId,
})

Implementation

const LogOptions({
  required this.level,
  required this.message,
  this.stackTrace,
  this.metadata,
  this.userIdentifier,
  this.sessionId,
});