Domain constructor
Domain(
- String clientId,
- String providerName, {
- required DomainConfiguration config,
- Domain? parent,
Implementation
Domain(
this.clientId,
this.providerName, {
required this.config,
this.parent,
}) {
if (parent != null) {
parent!.children.add(this);
}
}