RowCollection constructor

RowCollection(
  1. Worksheet worksheet
)

Create a instance of rows collection.

Implementation

RowCollection(Worksheet worksheet) {
  _worksheet = worksheet;
  _innerList = <Row?>[];
}