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