DecodeDataBase64 method

  1. @override
Uint8List DecodeDataBase64(
  1. Uint8List data
)
override

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));
  },
);