showCurrentLocation method

Future<void> showCurrentLocation()

Show the user's current location on the map

Implementation

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