toJson method

Map<String, dynamic> toJson()

Implementation

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