call<T> method
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());