printVerboseStep method

void printVerboseStep(
  1. String step, [
  2. String? details
])

Prints verbose step information (for step-by-step operations).

Implementation

void printVerboseStep(String step, [String? details]) {
  if (verbose && !quiet) {
    if (details != null) {
      stdout.writeln('  [$step] $details');
    } else {
      stdout.writeln('  [$step]');
    }
  }
}