selectCustomPoi method
Implementation
Future<String?> selectCustomPoi(int poiId) async {
log("Dart selectCustomPoi called, methodChannel will be invoked.");
return await methodChannel
.invokeMethod<String>('selectCustomPoi', <String, int>{'poiId': poiId});
}