toJson method

Map<String, dynamic> toJson()

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,
  };
}