openAppNotificationSettings method
Opens app notification settings (Android). User must grant manually.
Implementation
@override
Future<bool> openAppNotificationSettings() async {
final result = await methodChannel.invokeMethod<bool>(
'openAppNotificationSettings',
);
return result ?? false;
}