Answers for "write file flutter"

0

write and read to file in flutter

Future<File> get _localFile async {
  final path = await _localPath;
  return File('$path/counter.txt');
}
Posted by: Guest on January-10-2021
0

write and read to file in flutter

Future<String> get _localPath async {
  final directory = await getApplicationDocumentsDirectory();

  return directory.path;
}
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language