showGo method

void showGo (String htmlInfoText)

Shows a modal InfoDialog with centered htmlInfoText. Like show, but "unawaited", i.e. doesn't return anything, and does not wait until the red cross is pressed.

Implementation

void showGo(String htmlInfoText) async {
  unawaited(Info.show(htmlInfoText));
}