fileExists method

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

Checks if a file exists at the given path

Implementation

@override
Future<bool> fileExists(String filePath) {
  throw UnimplementedError();
}