Bookshelf constructor

Bookshelf({
  1. String? access,
  2. String? created,
  3. String? description,
  4. int? id,
  5. String? kind,
  6. String? selfLink,
  7. String? title,
  8. String? updated,
  9. int? volumeCount,
  10. String? volumesLastUpdated,
})

Implementation

Bookshelf({
  this.access,
  this.created,
  this.description,
  this.id,
  this.kind,
  this.selfLink,
  this.title,
  this.updated,
  this.volumeCount,
  this.volumesLastUpdated,
});