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