inclusionList property

List<String> get inclusionList

Include network traffic to the list of IP blocks in CIDR notation to the tunnel. This parameter can be used to set up a split tunnel. By default no traffic is directed to the tunnel. Adding the entry "0.0.0.0/0" to this list gets all the user traffic redirected to the tunnel. 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 inclusionList =>
    _wrapped.inclusionList.toDart.cast<String>().map((e) => e).toList();
set inclusionList (List<String> v)

Implementation

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