isFile method

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

Implementation

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