how to save file in external directory in flutter? code example
Example 1: flutter path provider
dependencies:
path_provider: ^1.6.27
Example 2: write and read to file in flutter
Future<int> readCounter() async {
try {
final file = await _localFile;
// Read the file.
String contents = await file.readAsString();
return int.parse(contents);
} catch (e) {
// If encountering an error, return 0.
return 0;
}
}