Sprint constructor

Sprint(
  1. String module, {
  2. Level minimumLogLevel = Level.debug,
  3. bool includeTimestamp = false,
  4. bool quietMode = false,
})

Create an instance of Sprint, indicated as managing logs for module.

minimumLogLevel - The minimum log level to consider when attempting to log a message.

includeTimestamp - Whether to include a timestamp with the message.

quietMode - Whether the printing of messages should be stopped entirely.

Implementation

Sprint(
  super.module, {
  super.minimumLogLevel = Level.debug,
  super.includeTimestamp = false,
  super.quietMode = false,
});