Я хочу прочитать данные из документа Firestore, но выдает ошибку.
Вот код:
@override
Widget build(BuildContext context) {
final bloc = BlocProvider.of<AuthBloc>(context);
DocumentSnapshot doc;
return Scaffold(
appBar: AppBar(
title: Text("Your account"), backgroundColor: Colors.blueGrey[900]),
body: Container(
color: Colors.blueGrey[800],
child: Form(
key: _formKey,
child: ListView(
children: <Widget>[
AccountImage(),
ListTile(
leading: Icon(Icons.account_box, color: Colors.white),
title: TextField(
decoration: InputDecoration(
fillColor: Colors.white,
hintText: '${doc.data['name']}',
hintStyle: TextStyle(color: Colors.white)
),