Domain constructor

Domain({
  1. String? legacyId,
  2. String? name,
})

Implementation

Domain({
  this.legacyId,
  this.name,
});