SetPlatformFileEditorCommand constructor
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,
);
}