factory Publisher({ /// The name of this publisher required String name, /// The list of the books this publisher published @Default([]) List<Book> books, }) = _Publisher;