showConfirmationDialog method

Future<bool> showConfirmationDialog(
  1. String title,
  2. String message
)

Implementation

Future<bool> showConfirmationDialog(String title, String message) {
  return NotificationService().showConfirmation(
    context: this,
    title: title,
    message: message,
  );
}