ExcelTableCollection constructor

ExcelTableCollection(
  1. Worksheet worksheet
)

Create a instances of tables collection.

Implementation

ExcelTableCollection(Worksheet worksheet) {
  _sheet = worksheet;
  _tableCollection = <ExcelTable>[];
}