checkFileExist function

Future<bool> checkFileExist(
  1. String path
)

Implementation

Future<bool> checkFileExist(String path) async {
  return File(path).exists();
}