static Future<bool> checkFileExistenceAsync({ required String filePath, }) async { final file = File(filePath); if (await file.exists()) { return true; } else { return false; } }