The detail message that is being shown on notification dialog/popup is multiple list of strings. How to display them as bulleted list instead?
await ShowNotification(NotificationSeverity.Error, "Clone Error", "Missing Values : Name, Address, ZipCode, DOB");
The details should show something like:
Missing Values:
- Name
- Address
- ZipCode
- DOB
I tried converting that to html string, but that does not work. Any hints/helps would be appreciated.