my question is: through FirebaseAuth I get the user's data and that data is passed to Firebase Database including the URL of the profile image == > mAuth.getCurrentUser (). getPhotoUrl ();
a Firebase database is passed through mAuth.getCurrentUser (). getPhotoUrl (). toString (); from which I get the URL of the image
What I want is to grab that profile image URL and save it in Firebase Storage
and from my storage acquire the new URL of the image and show the user the image
In other words I want to get the image and save it in my storage
Thanks for your answers