Author constructor

Author({
  1. required String author,
  2. @Default([]) List<Book> books,
})

Implementation

factory Author({
  /// The name of the author
  required String author,

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