exists method

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

Checks if a file exists at path.

Implementation

@override
Future<bool> exists(String path) async {
  return await File(p.join(root, path)).exists();
}