TranslateCommand constructor

TranslateCommand({
  1. required Logger logger,
})

Implementation

TranslateCommand({required this.logger}) {
  argParser.addOption(
    'source',
    abbr: 's',
    defaultsTo: 'en',
    help: 'Language code to use as the source of truth (e.g., en, vi).',
  );
}