exists static method

Future<bool> exists(
  1. 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);
}