BooksWidget constructor

const BooksWidget({
  1. Key? key,
  2. required List<Book> books,
})

Implementation

const BooksWidget({
  Key? key,
  required this.books,
}) : super(key: key);