verbose method

void verbose(
  1. String? string
)

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

Implementation

void verbose(String? string) {
  final frame = Trace.current().frames[1];
  core.Settings().verbose(string, frame: frame);
}