Checks if a file exists at the given path
@override Future<bool> fileExists(String filePath) async { final file = File(filePath); return await file.exists(); }