toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final display = this.display;
final height = this.height;
final iconLink = this.iconLink;
final link = this.link;
final preferences = this.preferences;
final title = this.title;
final type = this.type;
final width = this.width;
return {
'display': ?display,
'height': ?height,
'iconLink': ?iconLink,
'link': ?link,
'preferences': ?preferences,
'title': ?title,
'type': ?type,
'width': ?width,
};
}