customAttribute property

Iterable<CustomAttribute> get customAttribute

Enumerates all CustomAttribute entries across all readers.

Implementation

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