verbose method

IShell verbose([
  1. bool verbose = true
])

Clones the current IShell instance, setting the verbosity as required

since 0.0.1

Implementation

IShell verbose([bool verbose = true]) {
  return copyWith(verbose: verbose);
}