hideCurrentLocation method
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');
}
}