getFullEncryptedPlacesDirPath function

Future<String> getFullEncryptedPlacesDirPath()

Get the full directory path for encrypted places (relative to POD root).

Implementation

Future<String> getFullEncryptedPlacesDirPath() async {
  final dataPath = await getDataDirPath();
  return '$dataPath/$encryptedPlacesDirName';
}