skip to Main Content

Model not parsing from json/map in flutter

I have this function to get userData into model: Future<UserModel> getUser() async { final snap = await _fireStore .collection("users") .doc(_firebaseAuth.currentUser?.email ?? _firebaseAuth.currentUser?.phoneNumber) .get(); final data = snap.data(); debugPrint("data: $data"); // this line gives output // debugPrint("data: ${jsonDecode(data.toString())}"); -> this line…

VIEW QUESTION
Back To Top
Search