toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assessment = this.assessment;
final languageCode = this.languageCode;
final longDescription = this.longDescription;
final product = this.product;
final publisher = this.publisher;
final shortDescription = this.shortDescription;
final title = this.title;
return {
'assessment': ?assessment,
'languageCode': ?languageCode,
'longDescription': ?longDescription,
'product': ?product,
'publisher': ?publisher,
'shortDescription': ?shortDescription,
'title': ?title,
};
}