LogEventLoggerInfo constructor

LogEventLoggerInfo({
  1. required String name,
  2. String? threadName,
  3. required String version,
})

Implementation

LogEventLoggerInfo({
  required this.name,
  this.threadName,
  required this.version,
});