I've been trying to modify the code available here so that the title and dateAdded from VMoneyNews is visible in the apps listView.
Unfortunately, when I try to run the following edited code I get the error stated in the Image below.
http.Response response = await http.get('https://www.virtualmoneysnews.com/category/bitcoin-news/');
//parse and extract the data from the web site
dom.Document document = parser.parse(response.body);
document.getElementsByTagName('article').forEach((child) {
jobsList.add(Job(
title: child.getElementsByClassName('title').first.text,
dateAdded: child.getElementsByClassName('thetime date updated').last.text,
));
});
