resolveFiles method

Stream<File> resolveFiles()

Resolve the Files inside this collection.

Included files are only returned if they exist at the time of resolving.

Implementation

Stream<File> resolveFiles() async* {
  await for (final entry in resolve()) {
    final entity = entry.entity;
    if (entity is File) yield entity;
  }
}