verbose method

void verbose(
  1. Object? message
)

Prints to console if isVerbose is true

Implementation

void verbose(Object? message){
  if(isVerbose){
    _logger.t(message.toString());
  }
}