containsArchiveEntryAt method
Returns whether an Archive entry exists in this file.
Implementation
Future<bool> containsArchiveEntryAt(String path) async =>
await waitTryOrNull(
() async => (await contentAsArchive())?.entry(path)) !=
null;