HomeScreenList constructor

HomeScreenList({
  1. Key? key,
  2. required List booksData,
})

Implementation

HomeScreenList({
  super.key,
  required this.booksData,
});