toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accepted = this.accepted;
  final name = this.name;
  final regionCode = this.regionCode;
  final required = this.required;
  final termsOfServiceKind = this.termsOfServiceKind;
  return {
    'accepted': ?accepted,
    'name': ?name,
    'regionCode': ?regionCode,
    'required': ?required,
    'termsOfServiceKind': ?termsOfServiceKind,
  };
}