fileExists method

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

Returns whether a file exists at path.

Implementation

@override
bool fileExists(String path) => File(path).existsSync();