verbose method

void verbose(
  1. Object? message
)

Prints to console if isVerbose is true

Implementation

void verbose(Object? message) => _logger.trace(message.toString());