Cell constructor

const Cell({
  1. required int index,
  2. required int row,
  3. required int col,
  4. required int? value,
  5. bool matched = false,
  6. bool selected = false,
  7. CellFeedback feedback = CellFeedback.none,
})

Implementation

const Cell({
  required this.index,
  required this.row,
  required this.col,
  required this.value,
  this.matched = false,
  this.selected = false,
  this.feedback = CellFeedback.none,
});