Flutter & Firebase : How to check if my picture is uploaded to Firebase Storage Successfully?
I am trying to find a way to see if the picture was upload successful so that I can start and stop my LoadingScreen().
final StorageReference firebaseStorageRef = FirebaseStorage.instance
.ref()
.child('$path/${userID}_${timeStamp}_${number}_${tag}.jpg');
final StorageUploadTask uploadTask = firebaseStorageRef.putFile(image);
I am looking forward to hearing from all of you. Thank you in advance!