toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bodyLines = this.bodyLines;
  final displayLink = this.displayLink;
  final htmlTitle = this.htmlTitle;
  final image = this.image;
  final link = this.link;
  final title = this.title;
  return {
    'bodyLines': ?bodyLines,
    'displayLink': ?displayLink,
    'htmlTitle': ?htmlTitle,
    'image': ?image,
    'link': ?link,
    'title': ?title,
  };
}