dnsServers property

List<String> get dnsServers

A list of IPs for the DNS servers.

Implementation

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

Implementation

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