How to load images stored in Firebase in Flutter

Use the code below:

final ref = FirebaseStorage.instance.ref().child('image_path_without_extension');
var url = await ref.getDownloadURL();
Image.network(url);