Cell constructor
const
Cell({})
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,
});