ExcelRow constructor

ExcelRow({
  1. required List<ExcelCell> listCell,
  2. List<ExcelRow>? listSubRow,
  3. bool showSubRow = false,
})

Implementation

ExcelRow({
  required this.listCell,
  this.listSubRow,
  this.showSubRow = false,
});