call<T> method

Column<T> call<T>(
  1. String colName, {
  2. int start = 0,
  3. int? end,
})

Enables (typed) column access.

If start and/or end are specified, the column will be sliced respectively.

Implementation

Column<T> call<T>(String colName, {int start = 0, int? end}) =>
    Column(columnAsIterable<T>(colName, start: start, end: end).toList());