Domain constructor

Domain({
  1. String? createTime,
  2. String? lastVerifyTime,
  3. String? name,
  4. String? permission,
  5. String? verificationState,
})

Implementation

Domain({
  this.createTime,
  this.lastVerifyTime,
  this.name,
  this.permission,
  this.verificationState,
});