fetchPoiFromBuilding method
Returns the given indoor POI for the given building.
Implementation
Future<Poi?> fetchPoiFromBuilding(
String buildingIdentifier, String poiIdentifier) async {
var response = await methodChannel.invokeMethod("fetchPoiFromBuilding", {
"buildingIdentifier": buildingIdentifier,
"poiIdentifier": poiIdentifier
});
return createPoi(response);
}