Grid<T>.filled constructor
Grid<T>.filled ({})
Implementation
Grid.filled({required this.cellSize, required this.width, required this.height, required T value})
: _data = List.generate(width * height, (_) => value);