fileExists abstract method

Future<bool> fileExists(
  1. String filePath
)

Checks if a file exists at the specified path

filePath - Path to check

Returns true if the file exists, false otherwise

Implementation

Future<bool> fileExists(String filePath);