Cell constructor

Cell({
  1. required int row,
  2. required int column,
  3. String character = ' ',
  4. String color = 'white',
})

Implementation

Cell({
  required this.row,
  required this.column,
  this.character = ' ',
  this.color = 'white',
});