Subject constructor

Subject({
  1. required String subject,
  2. @Default.new([]) List<Book> books,
})

Implementation

factory Subject({
  /// The subject
  required String subject,

  /// The list of the books matching this subject
  @Default([]) List<Book> books,
}) = _Subject;