verbose method

void verbose(
  1. String? string
)

Logs a message to the console if the verbose settings are on.

Implementation

void verbose(String? string) {
  /// We log at info level (as that is logger's default)
  /// so that verbose messages will print when verbose
  /// is enabled.
  Logger('dcli').info(string);
}