Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Uint8List我想在使用将图像上传到firebase存储之前找出图像的大小
Uint8List
StorageUploadTask uploadTask = reference.putData(uint8ListImage);
其中uint8ListImage是一个Uint8List。有没有办法查出大小Uint8List?
uint8ListImage
尝试这个,
print(uint8ListImage.lengthInBytes);
这将以字节为单位打印大小