Log constructor

Log({
  1. String? translationKey,
  2. String? msg,
  3. dynamic error,
  4. StackTrace? stacktrace,
  5. LogLevel logLevel = LogLevel.info,
})

Implementation

Log({
  this.translationKey,
  this.msg,
  this.error,
  this.stacktrace,
  this.logLevel = LogLevel.info,
});