getPlacesDirPath function

Future<String> getPlacesDirPath()

Get the directory path for places.

Implementation

Future<String> getPlacesDirPath() async {
  final path = await getDataDirPath();
  return '$path/places';
}