SetPlatformFileEditorCommand constructor

SetPlatformFileEditorCommand(
  1. String executableName,
  2. String description
)

Constructor for SetPlatformFileEditorCommand. It initializes the command with its name and description.

Implementation

SetPlatformFileEditorCommand(
  String executableName,
  String description,
) : super(
        executableName,
        description,
      ) {
  argParser.addOption(
    RenameOption.value.name,
    abbr: RenameOption.value.abbr,
    help: 'Set value of the given command',
    mandatory: true,
  );
}