IPv4 constructor

IPv4({
  1. String? method,
  2. String? address,
  3. num? prefix,
  4. String? gateway,
  5. Dns? dns,
})

Returns a new IPv4 instance.

Implementation

IPv4({
  this.method,
  this.address,
  this.prefix,
  this.gateway,
  this.dns,
});