How to convert Image to File in Flutter?
问题 I am writing this flutter code where I have Image in an Image widget and I want to convert it into File so that I can upload it to Firebase Storage. Image _image = Image.asset('assets\images\profile.png'); File _fileImage = convertToFile(_image); //upload _fileImage to Firebase Storage code I need the File convertToFile(Image img) function. 回答1: Special thanks to sami kanafani. This is my solution (works perfectly for me): import 'dart:async'; import 'dart:io'; import 'package:flutter