Publisher constructor

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

Implementation

factory Publisher({
  /// The name of this publisher
  required String name,

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