OnvifDeleteUsersDeviceManagementCommand constructor

OnvifDeleteUsersDeviceManagementCommand()

Implementation

OnvifDeleteUsersDeviceManagementCommand() {
  argParser
    ..addOption(
      'users-file',
      abbr: 'f',
      valueHelp: 'yaml or json file path',
      help:
          'The path to the file that lists users to be created, cannot be used with other options.',
    )
    ..addOption(
      'username',
      abbr: 'u',
      valueHelp: 'string',
      help: 'Username string.',
    );
}