The operator '
FutureBuilder(future:getData(),
//getdata is the function Future you already make
builder: (BuildContext context, AsyncSnapshot<dynamic> snapshot) {
return Container(child: Text(snapshot.data[0]['title']),);}
//use . data to acces information