SpannableGrid constructor

SpannableGrid({
  1. Key? key,
  2. required List<SpannableGridCellData> cells,
  3. required int columns,
  4. Widget? emptyCellView,
  5. double? rowHeight,
  6. required int rows,
  7. bool showGrid = false,
  8. double spacing = 0.0,
  9. dynamic onCellChanged(
    1. SpannableGridCellData?
    )?,
  10. Color editingGridColor = Colors.black12,
  11. bool editingOnLongPress = true,
  12. Decoration? editingCellDecoration,
})

Implementation

SpannableGrid({
  Key? key,
  required this.cells,
  required this.columns,
  this.emptyCellView,
  this.rowHeight,
  required this.rows,
  this.showGrid = false,
  this.spacing = 0.0,
  this.onCellChanged,
  this.editingGridColor = Colors.black12,
  this.editingOnLongPress = true,
  this.editingCellDecoration,
}) : super(key: key);