toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowAllDomains = this.allowAllDomains;
final allowedDomains = this.allowedDomains;
final protectedEndpointGroup = this.protectedEndpointGroup;
return {
'allowAllDomains': ?allowAllDomains,
'allowedDomains': ?allowedDomains,
'protectedEndpointGroup': ?protectedEndpointGroup,
};
}