files property

Iterable files

Returns an Iterable allowing to go through all files contained in this object.

Implementation

Iterable<dynamic> get files sync* {
  for (final entry in entries) {
    final value = entry.value;
    if (value is File) {
      yield value;
    }
  }
}