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