fetchPoisFromBuilding method

Future<List<Poi>> fetchPoisFromBuilding(
  1. String buildingIdentifier
)

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);
}