DomainEntry constructor

DomainEntry({
  1. String? id,
  2. bool? isAlias,
  3. String? name,
  4. Map<String, String>? options,
  5. String? target,
  6. String? type,
})

Implementation

DomainEntry({
  this.id,
  this.isAlias,
  this.name,
  this.options,
  this.target,
  this.type,
});