DecompressData method
Implementation
@override
Uint8List DecompressData(
Uint8List compData,
) => run(
() => RaylibDebugLabels.DecompressData(compData),
() {
final dataSize = rl.Temp.Int$.Ref1();
final data = rl.Core.DecompressData(
rl.Temp.Uint8$.Array(compData).cast(),
compData.length,
dataSize,
);
return .fromList(rl.Temp.UnsignedChar$.asView(data, dataSize.value));
},
);