fileExists method
Checks if a file exists at the specified path
filePath
- Path to check
Returns true if the file exists, false otherwise
Implementation
@override
Future<bool> fileExists(String filePath) async {
return await _fileFor(filePath).exists();
}