appendFile method

Future<String?> appendFile(
  1. String fileName,
  2. String content
)

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);
}