exists static method
- String relativePath
Check if a path exists in the POD.
relativePath - Path relative to the app data directory.
Implementation
static Future<bool> exists(String relativePath) async {
return await PodFileSystem.fileExists(relativePath);
}