toJson method

Map<String, dynamic> toJson()

Implementation

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