Subject constructor
Subject({})
Implementation
factory Subject({
/// The subject
required String subject,
/// The list of the books matching this subject
@JsonKey(readValue: _readSubjectBooks) @Default([]) List<Book> books,
}) = _Subject;