set method

void set(
  1. Tile tile,
  2. Uint8List content
)

Implementation

void set(Tile tile, Uint8List content) {
  _writebufferForTiles[tile] = content;
  _sizes[tile] = content.length;
  _length += content.length;
}