existsAt method

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

Returns whether there is contents at the given relative path.

Implementation

@override
Future<bool> existsAt(String path) async =>
    (await archive)?.entries[path] != null;