CellBean constructor

CellBean({
  1. int? rowIndex,
  2. required String? name,
  3. int? cellIndex,
  4. dynamic obj,
  5. bool isTitle = false,
})

Implementation

CellBean(
    {this.rowIndex,
    required this.name,
    this.cellIndex,
    this.obj,
    this.isTitle = false});