toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final benefits = this.benefits;
  final description = this.description;
  final languageCode = this.languageCode;
  final title = this.title;
  return {
    'benefits': ?benefits,
    'description': ?description,
    'languageCode': ?languageCode,
    'title': ?title,
  };
}