record<T> method

T record<T>(
  1. int rowIndex,
  2. String colName
)

Grab a (typed) record sitting at dataframecolName.

Implementation

T record<T>(int rowIndex, String colName) =>
    this[rowIndex][columnIndex(colName)] as T;