fileExists method

  1. @override
bool fileExists(
  1. String path
)
override

Check if a file exists at the given path.

Implementation

@override
bool fileExists(String path) {
  return io.File(path).existsSync();
}