setPerAppProxyList method

Future<bool> setPerAppProxyList(
  1. List<String>? appList
)

Set list of apps for per-app tunneling

appList should be a list of package names

Implementation

Future<bool> setPerAppProxyList(List<String>? appList) {
  return FlutterSingboxPlatform.instance.setPerAppProxyList(appList);
}