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