Cell constructor

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

Implementation

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