fetchPoisFromBuilding method
Returns the complete list of indoor POIs of the given building.
Implementation
Future<List<Poi>> fetchPoisFromBuilding(String buildingIdentifier) async {
List response = await methodChannel.invokeMethod("fetchPoisFromBuilding", {
"buildingIdentifier": buildingIdentifier,
});
return createList<Poi>(response, createPoi);
}