fileExists method

Future<bool> fileExists(
  1. String fileId
)

Check if a file exists

Implementation

Future<bool> fileExists(String fileId) async {
  return _files.fileExists(fileId);
}