isVerboseCli function

bool isVerboseCli(
  1. List<String> arguments
)

Whether the user asked for full subprocess output (--verbose).

Implementation

bool isVerboseCli(List<String> arguments) => arguments.contains('--verbose');