readColumn property

Object? Function(TRow row, String column) readColumn
final

One column of row, without building a map of every column.

Relation key extraction only needs the local/foreign key columns. toColumns allocates a map of the whole row; this reads one field.

Implementation

final Object? Function(TRow row, String column) readColumn;