But Image.memory takes Uint8List as bytes parameter, while done in example snapshot.data returns File.
TL;DR
Developers are trying to display an image from a storage bucket in a Flutter app using Image.memory. The issue is that the example provides File type data instead of the required Uint8List. In this case, developers may need to convert the File into Uint8List before passing it to Image.memory for proper display.