Book constructor

Book({
  1. int? id,
  2. required String title,
  3. required String author,
  4. required String category,
  5. required String description,
})

Implementation

Book({
  this.id,
  required this.title,
  required this.author,
  required this.category,
  required this.description,
});