toJson method

Map<String, dynamic> toJson()

Implementation

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