toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final author = this.author;
  final blog = this.blog;
  final content = this.content;
  final customMetaData = this.customMetaData;
  final etag = this.etag;
  final id = this.id;
  final images = this.images;
  final kind = this.kind;
  final labels = this.labels;
  final location = this.location;
  final published = this.published;
  final readerComments = this.readerComments;
  final replies = this.replies;
  final selfLink = this.selfLink;
  final status = this.status;
  final title = this.title;
  final titleLink = this.titleLink;
  final trashed = this.trashed;
  final updated = this.updated;
  final url = this.url;
  return {
    'author': ?author,
    'blog': ?blog,
    'content': ?content,
    'customMetaData': ?customMetaData,
    'etag': ?etag,
    'id': ?id,
    'images': ?images,
    'kind': ?kind,
    'labels': ?labels,
    'location': ?location,
    'published': ?published,
    'readerComments': ?readerComments,
    'replies': ?replies,
    'selfLink': ?selfLink,
    'status': ?status,
    'title': ?title,
    'titleLink': ?titleLink,
    'trashed': ?trashed,
    'updated': ?updated,
    'url': ?url,
  };
}