getPerAppProxyList method

  1. @override
Future<List<String>> getPerAppProxyList()
override

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>();
}