getPlacesFilePath function

Future<String> getPlacesFilePath()

Get the full file path for places.json.

Implementation

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