Indexer get of the class
Column? operator [](int index) { if (index <= _innerList.length) { return _innerList[index - 1]; } else { return null; } }