Check if a file exists
Future<bool> fileExists(String filePath) async { return File(filePath).exists(); }