getIndividualPlaceFilePath function

Future<String> getIndividualPlaceFilePath(
  1. 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';
}