Skip to content

Instantly share code, notes, and snippets.

@Norbert515
Created February 15, 2018 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Norbert515/f30485a6b39957847e1c26766e8d02c5 to your computer and use it in GitHub Desktop.
Save Norbert515/f30485a6b39957847e1c26766e8d02c5 to your computer and use it in GitHub Desktop.
addBook
void _addBook(dynamic book) {
setState(() {
_items.add(new Book(book["volumeInfo"]["title"], book["volumeInfo"]["imageLinks"]["smallThumbnail"]));
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment