property property

Iterable<Property> get property

Enumerates all Property entries across all readers.

Implementation

Iterable<Property> get property => readers.indexed.expand(
  (e) => e.$2.tableStream.property.map((index) => .new(this, e.$1, index)),
);