v static method

void v(
  1. String message, {
  2. bool showPrefix = true,
})

Logs a verbose message.

If showPrefix is true, the message will be prefixed with a vertical bar.

Implementation

static void v(String message, {bool showPrefix = true}) {
  _logger.v('${showPrefix ? '│ ' : ''}$message');
}