Config_NetworkConfig_IpV4Config constructor
Implementation
factory Config_NetworkConfig_IpV4Config({
$core.int? ip,
$core.int? gateway,
$core.int? subnet,
$core.int? dns,
}) {
final result = create();
if (ip != null) result.ip = ip;
if (gateway != null) result.gateway = gateway;
if (subnet != null) result.subnet = subnet;
if (dns != null) result.dns = dns;
return result;
}