convertOptions top-level property
Implementation
final List<Option> convertOptions = [
Option(
name: ['-o', '--output'],
description: 'Filesystem path to write files to',
args: [Arg(name: 'path', template: 'folders')]),
Option(
name: '--unsafe',
description: 'Enable less safe operations, please backup first',
isDangerous: true)
];