showDialogue method

dynamic showDialogue(
  1. BuildContext context
)

Implementation

showDialogue(BuildContext context) {
  if (_enableDialogue) {
    CleanFailureDialogue.show(context, failure: this);
  } else {
    Logger.e(this);
  }
}