unselectPOIById method

Future<void> unselectPOIById(
  1. int id
)

unselect a Point Of Interest by its id

Implementation

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