sajjad sohrabi
sajjad sohrabi

Reputation: 306

Is it possible to make Vpn app using flutter and dart

I tried using this package to make VPN connection app but it dose not support the connection type like (L2TP or PPTP)

https://pub.dev/packages/flutter_vpn

Upvotes: 4

Views: 15171

Answers (2)

Rizaq Aman
Rizaq Aman

Reputation: 1

Yes, it is possible. You can try by clearing the cache and cookies. Sometimes these causes the issue.

Upvotes: -1

Murat Aslan
Murat Aslan

Reputation: 1580

i found that code on source, seems like pptp connection

  /// Use given credentials to connect VPN (ikev2-eap).
  /// This will create a background VPN service.
  static Future<Null> simpleConnect(
      String address, String username, String password) async {
    await _channel.invokeMethod('connect',
        {'address': address, 'username': username, 'password': password});
  }

Upvotes: 0

Related Questions