readFile static method

Future<String?> readFile(
  1. String relativePath
)

Read file content from the POD.

relativePath - Path relative to the app data directory.

Implementation

static Future<String?> readFile(String relativePath) async {
  return await PodFileSystem.readFile(relativePath);
}