BeeDataGrid constructor

const BeeDataGrid({
  1. Key? key,
  2. required List<BeeColumn> columns,
  3. required List<BeeItemCel> rows,
  4. String? title,
  5. int rowsPerPage = 10,
})

Implementation

const BeeDataGrid(
    {Key? key,
    required this.columns,
    required this.rows,
    this.title,
    this.rowsPerPage = 10})
    : super(key: key);