hideCurrentLocation method

Future<void> hideCurrentLocation()

Hide the user's current location from the map

Implementation

Future<void> hideCurrentLocation() async {
  try {
    await _channel.invokeMethod('hideCurrentLocation');
  } catch (e) {
    debugPrint('Error hiding current location: $e');
  }
}