SrcShelf constructor

const SrcShelf({
  1. required String name,
  2. required List<SrcBook> books,
})

Implementation

const SrcShelf({
  required this.name,
  required this.books,
});