entries property
Iterable<NativeArtifactEntry>
get
entries
All entries in this artifact bundle (primary + companions).
Implementation
Iterable<NativeArtifactEntry> get entries sync* {
yield primary;
yield* companions;
}