List<int> Uint8Array(int n, [int? at]) { reset(at); final v = WasmMemory.heapU8 .sublist(_cur, _cur + n ); _cur += n * WasmSize.Uint8; return v; }