如果有人感兴趣,我找到了解决方案:
从JSON抓取Blob:
var blob = yourJSONMapHere['yourJSONKeyHere'];
var image = base64.depre(blob);//图片是一个Uint8List
现在,使用 图像 中
Image.memory
new Container( child: new Image.memory(image));
这对我有用!

如果有人感兴趣,我找到了解决方案:
从JSON抓取Blob:
var blob = yourJSONMapHere['yourJSONKeyHere'];
var image = base64.depre(blob);//图片是一个Uint8List
现在,使用 图像 中
Image.memory
new Container( child: new Image.memory(image));
这对我有用!