LocationPermissionGranted method
Implementation
@override
Future<void> LocationPermissionGranted() async {
try {
await methodChannel.invokeMethod('LocationPermissionGranted');
} on PlatformException catch (e) {
print("Failed to call LocationPermissionGranted: ${e.message}");
}
}