handleSuccess method

void handleSuccess({
  1. MacWebViewBrowser? macWebview,
  2. Webview? linuxWebview,
})

Implementation

void handleSuccess({
  MacWebViewBrowser? macWebview,
  Webview? linuxWebview,
}) {
  debugPrint("success called");
  sl<NavigationService>().popAll();
  macWebview?.close();
  linuxWebview?.close();
  sl<EztoResultService>().onClose(CloseReason.transactionCompleted);
}