addSubnetToBypass method

Future<bool> addSubnetToBypass(
  1. String subnet
)

Add subnet to bypass list (will not use VPN) subnet - subnet in CIDR notation (e.g., "192.168.1.0/24", "10.0.0.0/8")

Implementation

Future<bool> addSubnetToBypass(String subnet) {
  throw UnimplementedError('addSubnetToBypass() has not been implemented.');
}