Result constructor

Result({
  1. String? hostname,
  2. bool? isIp,
  3. String? subdomain,
  4. String? domain,
  5. String? domainWithoutSuffix,
})

Implementation

Result({
  this.hostname,
  this.isIp,
  this.subdomain,
  this.domain,
  this.domainWithoutSuffix,
});