readColumnAsInt method

int readColumnAsInt(
  1. String columnName
)

Reads column columnName and converts to Type.Integer if not an integer.

Implementation

int readColumnAsInt(String columnName) {
  return readColumnByIndexAsInt(_columnIndices[columnName]!);
}