startVless method

Future<void> startVless({
  1. required String remark,
  2. required String config,
  3. required String notificationDisconnectButtonName,
  4. List<String>? blockedApps,
  5. List<String>? bypassSubnets,
  6. List<String>? dnsServers,
  7. bool proxyOnly = false,
})

Starts the VPN connection with the given configuration.

Implementation

Future<void> startVless({
  required String remark,
  required String config,
  required String notificationDisconnectButtonName,
  List<String>? blockedApps,
  List<String>? bypassSubnets,
  List<String>? dnsServers,
  bool proxyOnly = false,
}) {
  throw UnimplementedError('startVless() has not been implemented.');
}