-
Hello, I am looking to upload to Firebase Storage a XmlDocument that I have created in my Flutter app. Could you help please ? Benjamin |
Beta Was this translation helpful? Give feedback.
Answered by
renggli
Dec 13, 2022
Replies: 1 comment
-
See the documentation on how to read and write files, i.e. final file = new File('filename.txt');
final stream = await file.writeAsString(document.toString()); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
renggli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the documentation on how to read and write files, i.e.