SrcBook constructor

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

Implementation

const SrcBook({
  required this.name,
  required this.pages,
});