selectPOIById method

Future<void> selectPOIById(
  1. int id
)

select a Point Of Interest by its id

Implementation

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