formatFlag top-level property
Implementation
final FigOption formatFlag = FigOption(
name: ['-f', '--format'],
description:
'Change the way structured data is presented. If "json" or "raw", you can pipe the output of the command into other tools, such as jq',
args: [
FigArg(
name: 'format',
suggestions: ['plain', 'json', 'raw', 'row', 'table'],
),
],
);