toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appLogoImage = this.appLogoImage;
final appTarget = this.appTarget;
final description = this.description;
final title = this.title;
return {
'appLogoImage': ?appLogoImage,
'appTarget': ?appTarget,
'description': ?description,
'title': ?title,
};
}