Cell constructor

Cell({
  1. required int row,
  2. required int col,
})

Implementation

Cell({required this.row, required this.col});