readFile static method
- 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);
}