exists method

Future<bool> exists(
  1. String path, {
  2. bool debug = false,
})

Implementation

Future<bool> exists(String path, {bool debug = false}) async {
  return testFile(path, 'e', debug: debug);
}