navigationResponseHandler function
NavigationResponseAction
navigationResponseHandler({
Implementation
NavigationResponseAction navigationResponseHandler({
required String nextUrl,
}) {
if (nextUrl.contains(DeemaSDKConstants.failureUrl)) {
return NavigationResponseAction.CANCEL;
}
if (nextUrl.contains(DeemaSDKConstants.successUrl)) {
return NavigationResponseAction.CANCEL;
}
return NavigationResponseAction.ALLOW;
}