Use the File object’s writeAsString()
method to write a string to a file. After writing the string, the method closes the file.
import 'dart:io';
main() async {
final filename = 'file.txt';
var file = await new File(filename).writeAsString('some content');
print("Content written to $file");
}
Copyright© 2013-2019