exclusionList property

List<String> get exclusionList

Exclude network traffic to the list of IP blocks in CIDR notation from the tunnel. This can be used to bypass traffic to and from the VPN server. When many rules match a destination, the rule with the longest matching prefix wins. Entries that correspond to the same CIDR block are treated as duplicates. Such duplicates in the collated (exclusionList + inclusionList) list are eliminated and the exact duplicate entry that will be eliminated is undefined.

Implementation

List<String> get exclusionList =>
    _wrapped.exclusionList.toDart.cast<String>().map((e) => e).toList();
set exclusionList (List<String> v)

Implementation

set exclusionList(List<String> v) {
  _wrapped.exclusionList = v.toJSArray((e) => e);
}