getIndividualPlaceFilePath function
- String placeId
Get file path for individual place file.
Implementation
Future<String> getIndividualPlaceFilePath(String placeId) async {
final dirPath = await getPlacesDirPath();
return '$dirPath/place_$placeId.json';
}