fetchBookById method

Future<Book?> fetchBookById(
  1. int bookId
)

Implementation

Future<Book?> fetchBookById(int bookId) => _bookRepository.fetchBookById(bookId);