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