getFilesDir method

  1. @override
Future<String> getFilesDir(
  1. String rootPath
)
override

Implementation

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