hidePOIById method

Future<void> hidePOIById(
  1. int id
)

hide a Point Of Interest by its id

Implementation

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