VariableLocalizationFindSubcommand constructor
VariableLocalizationFindSubcommand()
Implementation
VariableLocalizationFindSubcommand() {
argParser
..addOption(
'variable-id',
help: 'Variable ID. [Required]',
mandatory: true,
)
..addOption(
'locale-id',
help: 'Locale ID (e.g. en, nl, es). [Required]',
mandatory: true,
)
..addOption(
'field',
help:
'Field name (e.g. zero, one, two, few, many, other, male, female). [Required]',
mandatory: true,
)
..addOption(
'variant',
help: 'Optional variant name [Optional].',
);
}