NiceConsoleOutput constructor

const NiceConsoleOutput({
  1. Key? key,
  2. required List<ConsoleMessage> messages,
  3. bool showTimestamp = false,
  4. int maxMessages = 500,
})

Implementation

const NiceConsoleOutput({
  super.key,
  required this.messages,
  this.showTimestamp = false,
  this.maxMessages = 500,
});