Write to a file To write a string to a file, use the writeAsString method : import ‘dart:io’; void main() async { final filename = ‘file. txt’; var file = await File(filename). writeAsString(‘some content’); // Do something with the file. }
Read moreHow do I store files in flutter?
How to save a file locally with Flutter(Image, Text)
Read more