Domain constructor

Domain(
  1. String clientId,
  2. String providerName, {
  3. required DomainConfiguration config,
  4. Domain? parent,
})

Implementation

Domain(
  this.clientId,
  this.providerName, {
  required this.config,
  this.parent,
}) {
  if (parent != null) {
    parent!.children.add(this);
  }
}