highlightInterestById method

Future<void> highlightInterestById(
  1. String poiId,
  2. bool openDetails
)

Implementation

Future<void> highlightInterestById(String poiId, bool openDetails) async {
  return await _callJavascriptAPI<String>(
      "highlightInterestById", "'$poiId', $openDetails");
}