showPOIs method

Future<void> showPOIs(
  1. List<int> list
)

show a Point Of Interest by its id

Implementation

Future<void> showPOIs(List<int> list) async {
  print("wemapMap : showing POIs list ...");
  await _methodChannel.invokeMethod('showPOIs', list);
}