Reads a text file from app-private storage. Returns null if the file does not exist.
Future<String?> readFile(String fileName) { _validateFileName(fileName); return NexoraSdkPlatform.instance.readFile(fileName); }