showCurrentLocation method
Implementation
@override
Future<void> showCurrentLocation() async {
try {
await checkLocationPermission();
await methodChannel.invokeMethod('showCurrentLocation');
} on PlatformException catch (e) {
throw Exception("Failed to show current location: '${e.message}'.");
}
}