getPerAppProxyList method
Get per-app proxy list
Implementation
@override
Future<List<String>> getPerAppProxyList(PerAppProxyMode mode) async {
final result = await methodChannel.invokeMethod<List<dynamic>>(
'get_per_app_proxy_list',
{'mode': mode.value},
);
if (result == null) return [];
return result.map((e) => e.toString()).toList();
}