showDialog method

void showDialog(
  1. EscapeGameDialog dialog, {
  2. bool notify = true,
})

Opens the specified dialog.

Implementation

void showDialog(EscapeGameDialog dialog, {bool notify = true}) {
  _dialog = dialog;
  if (notify) {
    notifyListeners();
  }
}