@override void initState() { super.initState(); http.get(this._apiGatewayURL) .then((response) => response.body) .then(JSON.decode) .then((movies) { movies.forEach(_addMovie); }); }