ImportCommand constructor

ImportCommand()

Implementation

ImportCommand() {
  argParser
    ..addOption(
      'from',
      help: 'Source format to import from.',
      allowed: const ['arb'],
      defaultsTo: 'arb',
    )
    ..addOption(
      'path',
      help: 'Path to the source files (e.g. `lib/l10n/`) to import.',
    );
}