showPopupConfirm method
dynamic
showPopupConfirm({})
Implementation
showPopupConfirm(
{String title = "",
String content = "",
String textButton = "",
required String screen}) {
showAlertDialogMessage(
title: title,
content: content,
onCancelClick: (() {}),
onDoneClick: (() {
Get.toNamed(screen);
}),
textDone: textButton,
maxHeight: 170);
}