fileExists static method

Future<bool> fileExists(
  1. String path
)

always false because web doesn't have access to local files

Implementation

static Future<bool> fileExists(String path) async {
  return false; // Web does not have local file access
}