MmConfigLogSettings constructor

MmConfigLogSettings({
  1. bool? enableConsole,
  2. String? consoleLevel,
  3. bool? enableFile,
  4. String? fileLevel,
  5. String? fileLocation,
  6. bool? enableWebhookDebugging,
  7. bool? enableDiagnostics,
})

Returns a new MmConfigLogSettings instance.

Implementation

MmConfigLogSettings({
  this.enableConsole,
  this.consoleLevel,
  this.enableFile,
  this.fileLevel,
  this.fileLocation,
  this.enableWebhookDebugging,
  this.enableDiagnostics,
});