searchInFile method

Future<void> searchInFile(
  1. String path, {
  2. required GeoJsonQuery query,
  3. String? nameProperty,
  4. bool verbose = false,
})

Search a GeoJsonFeature by property from a file

Implementation

Future<void> searchInFile(String path,
    {required GeoJsonQuery query,
    String? nameProperty,
    bool verbose = false}) async {
  await parseFile(path,
      nameProperty: nameProperty, verbose: verbose, query: query);
}