readRowAsObjectList

fun readRowAsObjectList(row: Row, numColumns: Int = row.cellCount): List<Any?>(source)

Reads a row into a fixed-length list, padding missing cells with null. fastexcel's Row.getCell throws on out-of-bounds indices (POI returned null), so we bounds-check before reading.