showConfirmationForOpenGate method
dynamic
showConfirmationForOpenGate()
Implementation
showConfirmationForOpenGate() {
// return Get.dialog(
// GenericDialogBox(
// headerText: 'Open Gate Manually',
// content: SelectableText(
// 'Vehical number is not verify.Are you want to open gate manually?',
// textAlign: TextAlign.left,
// style: TextStyle(
// fontSize: 15,
// fontWeight: FontWeight.normal,
// color: Colors.black,
// ),
// ),
// primaryButtonText: 'Open',
// secondaryButtonText: AppStrings.close,
// onSecondaryButtonPressed: () {
// Get.back();
// },
// onPrimaryButtonPressed: () {
// Navigator.of(Get.overlayContext!).pop();
// showOpenGateNarrationPopup();
// },
// ),
// );
}