setPerAppProxyList method
Set list of apps for per-app proxy
Implementation
@override
Future<bool> setPerAppProxyList(List<String>? appList) async {
final result = await methodChannel.invokeMethod<bool>(
'setPerAppProxyList',
{'appList': appList ?? []},
);
return result ?? false;
}