LogEntry constructor

const LogEntry({
  1. required PlatformInt64 timeMillis,
  2. required int level,
  3. required String tag,
  4. required String msg,
})

Implementation

const LogEntry({
  required this.timeMillis,
  required this.level,
  required this.tag,
  required this.msg,
});