Log.d constructor

Log.d({
  1. String? translationKey,
  2. String? msg,
  3. StackTrace? stacktrace,
})

Implementation

Log.d({
  this.translationKey,
  this.msg,
  this.stacktrace,
})  : logLevel = LogLevel.debug,
      error = null;