toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final _json = <String, dynamic>{};
  if (termsOfServiceLink != null) {
    _json[r'TermsOfServiceLink'] = termsOfServiceLink;
  }
  if (privacyPolicyLink != null) {
    _json[r'PrivacyPolicyLink'] = privacyPolicyLink;
  }
  if (aboutLink != null) {
    _json[r'AboutLink'] = aboutLink;
  }
  if (helpLink != null) {
    _json[r'HelpLink'] = helpLink;
  }
  if (reportAProblemLink != null) {
    _json[r'ReportAProblemLink'] = reportAProblemLink;
  }
  if (supportEmail != null) {
    _json[r'SupportEmail'] = supportEmail;
  }
  return _json;
}