getPois method

Future<List<Poi>?> getPois([
  1. String? poiID
])

The function getPois returns a Future that may contain a list of Poi objects, and it accepts an optional poiID parameter. @param {String} poiID - The poiID parameter is a nullable String that represents the ID of a point of interest (POI).

Implementation

Future<List<Poi>?> getPois([String? poiID]) {
  throw UnimplementedError('getPois() has not been implemented.');
}