showPOIById method

Future<void> showPOIById(
  1. int id
)

show a Point Of Interest by its id

Implementation

Future<void> showPOIById(int id) async {
  await _channel.invokeMethod('showPOIById', id);
}