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