Creates a new buffer of width by height initialized with transparent empty cells.
width
height
Buffer(this.width, this.height) : cells = List.generate(width * height, (_) => Cell.empty());