Book constructor

Book({
  1. required String title,
  2. required String author,
  3. required String isbn,
  4. required String comment,
})

Implementation

Book({
  required this.title,
  required this.author,
  required this.isbn,
  required this.comment,
});