removeCustomPoi method

Future<String?> removeCustomPoi(
  1. int poiId
)

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