BooksEntity constructor

BooksEntity({
  1. required String title,
  2. required String price,
  3. required String availability,
  4. required String image,
  5. required String link,
})

Implementation

BooksEntity({
  required this.title,
  required this.price,
  required this.availability,
  required this.image,
  required this.link,
});