selectCustomPoi method

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

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