deleteFile method

Future<bool> deleteFile(
  1. String fileName
)

Deletes a file from app-private storage.

Implementation

Future<bool> deleteFile(String fileName) {
  _validateFileName(fileName);
  return NexoraSdkPlatform.instance.deleteFile(fileName);
}