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) => Property(this, e.$1, index)),
);