toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedServicePatterns = this.allowedServicePatterns;
final allowedServices = this.allowedServices;
final enableRestriction = this.enableRestriction;
final servicePatternsEnforcementScopes =
this.servicePatternsEnforcementScopes;
return {
'allowedServicePatterns': ?allowedServicePatterns,
'allowedServices': ?allowedServices,
'enableRestriction': ?enableRestriction,
'servicePatternsEnforcementScopes': ?servicePatternsEnforcementScopes,
};
}