columnOf method

Object? columnOf(
  1. Object? row,
  2. String column
)

readColumn without the type argument.

Implementation

Object? columnOf(Object? row, String column) =>
    readColumn(row as TRow, column);