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