verbose method

void verbose(
  1. String? string
)

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

Implementation

void verbose(String? string) {
  if (isVerbose) {
    if (VerboseFlag().hasOption) {
      VerboseFlag().option.append(string!);
    } else {
      print(string);
    }
  }
}