connectIkev2EAP method

Future<void> connectIkev2EAP({
  1. required String server,
  2. required String username,
  3. required String password,
  4. String? name,
  5. int? mtu,
  6. int? port,
  7. String? remoteId,
  8. String? localId,
  9. bool disableCertValidation = false,
})

Connect to VPN. (IKEv2-EAP)

This will create a background VPN service. MTU is only available on android.

Implementation

Future<void> connectIkev2EAP({
  required String server,
  required String username,
  required String password,
  String? name,
  int? mtu,
  int? port,
  String? remoteId,
  String? localId,
  bool disableCertValidation = false,
}) async =>
    throw UnimplementedError();