verbose method

void verbose(
  1. Object? message
)

Prints to console if isVerbose is true

Implementation

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