static bool doesFileExist({ required String filePath, }) { File file = File(filePath); return file.existsSync(); }