verbose method

void verbose(
  1. String? string
)

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

Implementation

void verbose(String? string) {
  core.Settings().verbose(string);
}