fileExists method

Future<bool> fileExists(
  1. String fileName
)

Checks if a file exists in app-private storage.

Implementation

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