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