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