BrLogRecord constructor

const BrLogRecord({
  1. required BrLogLevel level,
  2. required Object? message,
  3. required String tag,
  4. required DateTime time,
  5. Object? error,
  6. StackTrace? stackTrace,
})

Implementation

const BrLogRecord({
  required this.level,
  required this.message,
  required this.tag,
  required this.time,
  this.error,
  this.stackTrace,
});