LoggerParameters constructor

const LoggerParameters({
  1. int maxLength = 54,
  2. String dateFormat = "HH:mm:ss:SSS",
  3. bool showLog = true,
  4. bool showInitMessage = true,
  5. List<LoggerTypeState> filterTypes = const [],
  6. List<String> filterTags = const [],
})

Implementation

const LoggerParameters({
  this.maxLength = 54,
  this.dateFormat = "HH:mm:ss:SSS",
  this.showLog = true,
  this.showInitMessage = true,
  this.filterTypes = const [],
  this.filterTags = const [],
}) : assert(maxLength >= 35);