I have the code in hand from other sources to send a local notification using Plugin.LocalNotification. Good stuff. The code works on Windows. It does not appear to work on IOS (using Hot Restart).
I came across other sources that suggest it is necessary to request the notification permission. OK
var notificationsEnabled = await LocalNotificationCenter.Current.AreNotificationsEnabled();
This indicates that notifications are not enabled in my app.
How then to request the Notification permission?
This worked on my Hot Restart-deployed IOS app: in Platforms/iOS/AppDelegate.cs, use the following code derived from Dima Ordenov's MauiSamples