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