get method
Handler for manualimport.
Returns a list of potential files to manually import at the given path.
Required Parameters:
folder: Full, absolute path to the folder to scan.
Optional Parameters:
filterExistingFiles: If the scan should ignore/filter out existing files in Radarr.
Implementation
Future<List<RadarrManualImport>> get({
required String folder,
bool? filterExistingFiles,
}) async => _commandGetManualImport(
_client,
folder: folder,
filterExistingFiles: filterExistingFiles,
);