fun alert(message: String, title: String? = null, buttonLabel: String? = null, callback: () -> Unit): Unit
Show alert dialog.
message - a message
message
title - an optional dialog title (defaults to Alert)
title
buttonLabel - an optional button label (defaults to OK)
buttonLabel
callback - a callback function
callback