TranslationCopySubcommand constructor

TranslationCopySubcommand()

Implementation

TranslationCopySubcommand() {
  argParser
    ..addOption(
      'id',
      help: 'Source translation ID to copy. [Required]',
      mandatory: true,
    )
    ..addOption(
      'key',
      abbr: 'k',
      help: 'New translation key name in snake_case. [Required]',
      mandatory: true,
    );
}