exists method

  1. @override
Future<bool> exists(
  1. String path
)
override

Checks if the file exists at the given path.

Implementation

@override
Future<bool> exists(String path) async {
  return _file(path).exists();
}