ColumnCollection constructor

ColumnCollection(
  1. Worksheet worksheet
)

Create a instance of rows collection.

Implementation

ColumnCollection(Worksheet worksheet) {
  _worksheet = worksheet;
  _innerList = <Column>[];
}