I get the error:
'Null' is not a subtype of type 'Map<String, dynamic>' in type cast
@override
void initState() {
FirebaseFirestore.instance.collection('user').doc(widget.id);
AsyncSnapshot<DocumentSnapshot>? snapshot;
Map<String, dynamic> data = snapshot?.data!.data() as Map<String, dynamic>;
super.initState();
}