toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final author = this.author;
final canonicalVolumeLink = this.canonicalVolumeLink;
final coverUrl = this.coverUrl;
final description = this.description;
final title = this.title;
final volumeId = this.volumeId;
return {
'author': ?author,
'canonicalVolumeLink': ?canonicalVolumeLink,
'coverUrl': ?coverUrl,
'description': ?description,
'title': ?title,
'volumeId': ?volumeId,
};
}