verbose method Null safety

void verbose(
  1. String message
)

It prints a message to the console, and then it prints the message to the Flutter console

Args: message (String): The message to be printed.

Implementation

static void verbose(String message) {
  _logger.v(message);
}