toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['fontFamily'] = this.fontFamily;
  data['logoUrl'] = this.logoUrl;
  data['showLogo'] = this.showLogo;
  data['showCookie'] = this.showCookie;
  data['showConsent'] = this.showConsent;
  data['showDSR'] = this.showDSR;
  data['title'] = this.title;
  data['description'] = this.description;
  data['dsrContent'] = this.dsrContent;
  return data;
}