NiceLogEntry constructor

const NiceLogEntry({
  1. required String message,
  2. NiceLogLevel level = NiceLogLevel.info,
  3. required DateTime timestamp,
  4. String? source,
  5. Map<String, dynamic>? data,
  6. String? stackTrace,
})

Implementation

const NiceLogEntry({
  required this.message,
  this.level = NiceLogLevel.info,
  required this.timestamp,
  this.source,
  this.data,
  this.stackTrace,
});