LoggerConfig constructor

const LoggerConfig({
  1. bool enableInDebug = true,
  2. List<String> allowedIds = const [],
  3. bool enableLongPressGesture = true,
  4. bool enablePersistence = false,
  5. int? maxStoredLogs,
})

Create a LoggerConfig.

Implementation

const LoggerConfig({
  this.enableInDebug = true,
  this.allowedIds = const [],
  this.enableLongPressGesture = true,
  this.enablePersistence = false,
  this.maxStoredLogs,
});