我正在尝试上传一些数据,但是当我执行该函数时,它给了我这个错误:
'List<dynamic>' is not a subtype of type 'Firestore' of 'function result'
我不知道这是什么意思,因为我是新手,所以我需要任何帮助, 这也是我尝试的功能 代码:
static Future uploaduserdata(
String userName, String age, String nat, String email) async {
FirebaseUser curuser = await _auth.currentUser();
_firestore.collection("users").document(curuser.uid).setData({
'userName': userName,
'age': age,
'email': email,
'nationality': nat
}).then((_) {
print("success!");
});
}