printVerboseStep method
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]');
}
}
}