ExcelDataRow constructor

const ExcelDataRow({
  1. required List<ExcelDataCell> cells,
})

Create an instand for ExcelDataRow.

Implementation

const ExcelDataRow({required List<ExcelDataCell> cells}) : _cells = cells;