tossPaymentsWebview function

dynamic tossPaymentsWebview(
  1. dynamic url
)

Handles specific URL schemes (like 'intent') and launches the corresponding app if necessary. url is the URL to be handled.

Implementation

tossPaymentsWebview(url) {
  final convertUrl = ConvertUrl(url);

  // 앱링크일시 convert하기 위해
  if (convertUrl.isAppLink()) {
    convertUrl.launchApp();
    return NavigationDecision.prevent;
  }
}