filesPath property

Future<String> get filesPath

Directory used to store user-facing files saved by the package.

Implementation

Future<String> get filesPath async {
  _filesPath ??=
      '${getParentDir(await rootPath)}$pathJoin$_defaultFilesDirectory';
  return _filesPath!;
}