isMainPlacesFile static method

bool isMainPlacesFile(
  1. String filePath
)

Check if a file path is a places.json file.

Implementation

static bool isMainPlacesFile(String filePath) {
  return filePath.endsWith('/places.json') ||
      filePath.endsWith('\\places.json');
}