T? oneValue<T>({required int row, Object col = 0}) { if (col case int n) return this[row][n] as T?; return this[row][labelToIndex(col.toString())] as T?; }