DecodeDataBase64 method
Decode Base64 string data
Implementation
Uint8List DecodeDataBase64(
Uint8List data,
) => run(
() => _debugLabels.DecodeDataBase64(data),
() {
final outputSize = $.Int$.Ref1();
final outputData = _flat.DecodeDataBase64(
$.Int8$.Array(data),
outputSize,
);
try {
return $.UnsignedChar$.asTypedList(outputData, outputSize.value);
} finally {
outputData.free();
}
},
);