void setNullBitmapBit(Uint8List bitmap, int row) { final byteIndex = row >> 3; final bit = 1 << (row & 0x7); bitmap[byteIndex] |= bit; }