Reputation: 306
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
Reputation: 1
Yes, it is possible. You can try by clearing the cache and cookies. Sometimes these causes the issue.
Upvotes: -1
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