appendFile method
Appends text to a file in app-private storage.
If the file does not exist, it is created.
Implementation
Future<String?> appendFile(String fileName, String content) async {
_validateFileName(fileName);
return NexoraSdkPlatform.instance.appendFile(fileName, content);
}