getPerAppProxyList method
Get current list of apps for per-app proxy
Implementation
@override
Future<List<String>> getPerAppProxyList() async {
final appList = await methodChannel.invokeMethod<List<dynamic>>(
'getPerAppProxyList',
);
if (appList == null) return [];
return appList.cast<String>();
}