fileExists method

Future<bool> fileExists(
  1. String fileName
)

Implementation

Future<bool> fileExists(String fileName) {
  return getFile(fileName).exists();
}