getFilesDir method
Implementation
@override
Future<String> getFilesDir(String rootPath) async {
final path =
"$rootPath${Platform.pathSeparator}jt_pref${Platform.pathSeparator}jtpreferences.json";
await createFile(path);
return path;
}
@override
Future<String> getFilesDir(String rootPath) async {
final path =
"$rootPath${Platform.pathSeparator}jt_pref${Platform.pathSeparator}jtpreferences.json";
await createFile(path);
return path;
}