toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cacheId = this.cacheId;
  final displayLink = this.displayLink;
  final fileFormat = this.fileFormat;
  final formattedUrl = this.formattedUrl;
  final htmlFormattedUrl = this.htmlFormattedUrl;
  final htmlSnippet = this.htmlSnippet;
  final htmlTitle = this.htmlTitle;
  final image = this.image;
  final kind = this.kind;
  final labels = this.labels;
  final link = this.link;
  final mime = this.mime;
  final pagemap = this.pagemap;
  final snippet = this.snippet;
  final title = this.title;
  return {
    'cacheId': ?cacheId,
    'displayLink': ?displayLink,
    'fileFormat': ?fileFormat,
    'formattedUrl': ?formattedUrl,
    'htmlFormattedUrl': ?htmlFormattedUrl,
    'htmlSnippet': ?htmlSnippet,
    'htmlTitle': ?htmlTitle,
    'image': ?image,
    'kind': ?kind,
    'labels': ?labels,
    'link': ?link,
    'mime': ?mime,
    'pagemap': ?pagemap,
    'snippet': ?snippet,
    'title': ?title,
  };
}