fileExists method

  1. @override
Future<bool> fileExists(
  1. String filePath
)
override

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();
}