BookQueryResult constructor
BookQueryResult({})
Implementation
factory BookQueryResult({
/// The number of results for this query
required int total,
/// The list of the books matching the query
@JsonKey(readValue: _readBookQueryBooks) @Default([]) List<Book> books,
}) = _BookQueryResult;