Hi guys,
in my frontend, I can only send thru the API an Uint8List which is a list of integers representing an image.
Uint8List
is a data type in Dart, commonly used in Flutter development. It represents a typed list of 8-bit unsigned integers (values from 0 to 255), and it's often used to handle binary data, like:
Images (e.g., raw bytes of a photo)
Files
Network streams
Cryptographic data
My question: how to transform the data to save the image in Xano.
I have tried to create metadata from the input, to decode, but is not working.