removeColumn method

RecordCol removeColumn(
  1. String name
)

Remove a column from the dataframe and return it.

Implementation

RecordCol removeColumn(String name) {
  final index = columnIndex(name);
  _trackedColumnNames.removeAt(index);
  return map((element) {
    element.removeAt(index);
  }).toList();
}