toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (author != null) 'author': author!,
  if (blog != null) 'blog': blog!,
  if (content != null) 'content': content!,
  if (etag != null) 'etag': etag!,
  if (id != null) 'id': id!,
  if (kind != null) 'kind': kind!,
  if (published != null) 'published': published!,
  if (selfLink != null) 'selfLink': selfLink!,
  if (status != null) 'status': status!,
  if (title != null) 'title': title!,
  if (trashed != null) 'trashed': trashed!,
  if (updated != null) 'updated': updated!,
  if (url != null) 'url': url!,
};