getAllBook method

Future<List<Book>> getAllBook()

Implementation

Future<List<Book>> getAllBook() {
  return bookDataProvider.getAllBooks();
}