checkFileExist static method

Future<bool> checkFileExist(
  1. String filePath
)

Implementation

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