colAt method

String? colAt(
  1. int colIndex
)

Get column data by column index (starting form 0)

Implementation

String? colAt(int colIndex) {
  if (colIndex >= _values.length) {
    throw MySQLClientException("Column index is out of range");
  }

  final value = _values[colIndex];

  return value;
}