in lib/src/array_2d.dart [90:94]
int _getIndex(int x, int y) { assert(x >= 0 && x < width); assert(y >= 0 && y < height); return x + y * width; }