getPois method
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.');
}