当我运行它时,它给出了一个错误提示Unhandled Exception: Invalid argument: Instance of 'Future<String>'
String username = FirebaseAuth.instance.currentUser!.displayName.toString();
void _uploadImage() async {
setState(() {
_isUploading = true;
});
final ref = FirebaseStorage.instance
.ref()
.child("posts")
.child(FirebaseAuth.instance.currentUser!.uid + '.jpg');
await ref.putFile(_pickedImage).whenComplete(() {
setState(() {
_isUploading = false;
});
});
await FirebaseFirestore.instance
.collection("posts")
.doc(FirebaseAuth.instance.currentUser!.uid)
.set({'username': username, 'imageUrl': ref.getDownloadURL()});
}
我想将用户名与 imageUrl 一起上传到 Firestore,但我找不到获取用户用户名的方法